vant/src/count-down/index.ts
neverland 44fb849a5f
types(CountDown): add CountDownInstance type (#9153)
* types(CountDown): add CountDownInstance type

* chore: fix snapshot
2021-07-29 15:34:08 +08:00

9 lines
266 B
TypeScript

import { withInstall } from '../utils';
import _CountDown from './CountDown';
const CountDown = withInstall<typeof _CountDown>(_CountDown);
export default CountDown;
export { CountDown };
export type { CountDownInstance, CountDownCurrentTime } from './CountDown';