You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/types/statistic/statistic.d.ts

61 lines
1.1 KiB

// 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
import { AntdComponent } from '../component';
import { VNode } from 'vue';
import { StatisticCountdown } from './statistic-countdown';
export declare class Statistic extends AntdComponent {
static Countdown: typeof StatisticCountdown;
/**
* decimal separator
* @default '.'
* @type string
*/
decimalSeparator: string;
/**
* the shape of statistic
* @type string
*/
formatter: () => VNode;
/**
* group separator
* @default ','
* @type string
*/
groupSeparator: string;
/**
* precision of input value
* @type number
*/
precision: number;
/**
* prefix node of value
* @type string | VNode
*/
prefix: string | VNode;
/**
* suffix node of value
* @type string | VNode
*/
suffix: string | VNode;
/**
* Display title
* @type string | VNode
*/
title: string | VNode;
/**
* Display value
* @type string or number
*/
value: string | number;
}