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

35 lines
719 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';
2019-05-25 10:02:44 +00:00
import { VNode } from 'vue';
2019-05-25 09:18:04 +00:00
export declare class StatisticCountdown extends AntdComponent {
2019-09-18 12:03:13 +00:00
format: string;
2019-05-25 09:18:04 +00:00
/**
2019-05-25 10:02:44 +00:00
* prefix node of value
* @type string | VNode
2019-05-25 09:18:04 +00:00
*/
2019-05-25 10:02:44 +00:00
prefix: string | VNode;
2019-05-25 09:18:04 +00:00
/**
2019-05-25 10:02:44 +00:00
* suffix node of value
* @type string | VNode
2019-05-25 09:18:04 +00:00
*/
2019-05-28 03:37:38 +00:00
suffix: string | VNode;
2019-05-25 09:18:04 +00:00
/**
2019-05-25 10:02:44 +00:00
* Display title
* @type string | VNode
2019-05-25 09:18:04 +00:00
*/
2019-05-25 10:02:44 +00:00
title: string | VNode;
/**
* Display value
* @type string or number
*/
value: string | number;
2019-09-18 12:03:13 +00:00
valueStyle: object;
2019-05-25 09:18:04 +00:00
}