types(Area): add reset method type (#5353)

This commit is contained in:
neverland
2019-12-22 12:54:29 +08:00
committed by GitHub
parent a54a77d8c8
commit 24def10a1e
5 changed files with 17 additions and 9 deletions
+5
View File
@@ -0,0 +1,5 @@
import { VanComponent } from './component';
export class Area extends VanComponent {
reset(code?: string): void;
}