types(Tabs): add resize method type

This commit is contained in:
陈嘉涵
2019-12-22 17:23:15 +08:00
committed by neverland
parent a1831b8638
commit 3c526ec1a2
2 changed files with 7 additions and 1 deletions

5
types/tabs.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import { VanComponent } from './component';
export class Tabs extends VanComponent {
resize(): void;
}