mirror of
https://github.com/youzan/vant.git
synced 2025-10-18 17:51:54 +00:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { VanComponent } from './component';
|
|
|
|
export class Form extends VanComponent {
|
|
submit(): void;
|
|
|
|
validate(name?: string): Promise<void>;
|
|
|
|
resetValidation(name?: string): void;
|
|
}
|