ant-design-vue/types/statistic/statistic-countdown.d.ts

44 lines
951 B
TypeScript
Raw Normal View History

2019-05-25 09:18:04 +00:00
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
2019-09-18 12:03:13 +00:00
import { AntdComponent } from '../component';
import { VNodeChild, CSSProperties } from 'vue';
2019-05-25 09:18:04 +00:00
export declare class StatisticCountdown extends AntdComponent {
$props:{
/**
* Format as moment
* @default 'HH:mm:ss'
*/
format?: string;
/**
* prefix node of value
* @type string | VNode
*/
prefix?: VNodeChild | JSX.Element;
2019-05-25 09:18:04 +00:00
/**
* suffix node of value
* @type string | VNode
*/
suffix?: VNodeChild | JSX.Element;
2019-05-25 09:18:04 +00:00
/**
* Display title
* @type string | VNode
*/
title?: VNodeChild | JSX.Element;
2019-05-25 10:02:44 +00:00
/**
* Display value
* @type string or number
*/
value?: string | number;
/**
* Set value css style
*/
valueStyle?: CSSProperties;
}
2019-05-25 09:18:04 +00:00
}