types(Field): add focus、blur method type

This commit is contained in:
陈嘉涵
2019-12-22 17:13:33 +08:00
committed by neverland
parent 5c1883f77c
commit 0b5c8e5f3d
3 changed files with 12 additions and 2 deletions

6
types/field.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import { VanComponent } from './component';
export class Field extends VanComponent {
focus(): void;
blur(): void;
}