types(CountDown): add methods types

This commit is contained in:
陈嘉涵
2019-12-22 17:07:10 +08:00
committed by neverland
parent 216ca56e63
commit 0438bdbc97
2 changed files with 11 additions and 3 deletions

7
types/count-down.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { VanComponent } from './component';
export class CountDown extends VanComponent {
start(): void;
pause(): void;
reset(): void;
}