tdesign-mobile-vue
Version:
tdesign-mobile-vue
36 lines (35 loc) • 1 kB
TypeScript
import { TdCountDownProps } from './type';
import { PropType } from 'vue';
declare const _default: {
autoStart: {
type: BooleanConstructor;
default: boolean;
};
content: {
type: PropType<TdCountDownProps['content']>;
default: string;
};
format: {
type: StringConstructor;
default: string;
};
millisecond: BooleanConstructor;
size: {
type: PropType<TdCountDownProps['size']>;
default: TdCountDownProps['size'];
validator(val: TdCountDownProps['size']): boolean;
};
splitWithUnit: BooleanConstructor;
theme: {
type: PropType<TdCountDownProps['theme']>;
default: TdCountDownProps['theme'];
validator(val: TdCountDownProps['theme']): boolean;
};
time: {
type: NumberConstructor;
required: boolean;
};
onChange: PropType<TdCountDownProps['onChange']>;
onFinish: PropType<TdCountDownProps['onFinish']>;
};
export default _default;