fix: statistic countdown typings (#1375)
parent
1fd1735cb7
commit
548f10d357
|
@ -5,7 +5,7 @@
|
||||||
import { AntdComponent } from '../component';
|
import { AntdComponent } from '../component';
|
||||||
import { VNode } from 'vue';
|
import { VNode } from 'vue';
|
||||||
|
|
||||||
export declare class AStatisticCountdown extends AntdComponent {
|
export declare class StatisticCountdown extends AntdComponent {
|
||||||
format: string;
|
format: string;
|
||||||
/**
|
/**
|
||||||
* prefix node of value
|
* prefix node of value
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
|
|
||||||
import { AntdComponent } from '../component';
|
import { AntdComponent } from '../component';
|
||||||
import { VNode } from 'vue';
|
import { VNode } from 'vue';
|
||||||
import AStatisticCountdown from './statistic-countdown';
|
import { StatisticCountdown } from './statistic-countdown';
|
||||||
|
|
||||||
export declare class Statistic extends AntdComponent {
|
export declare class Statistic extends AntdComponent {
|
||||||
static AStatisticCountdown: typeof AStatisticCountdown;
|
static Countdown: typeof StatisticCountdown;
|
||||||
/**
|
/**
|
||||||
* decimal separator
|
* decimal separator
|
||||||
* @default '.'
|
* @default '.'
|
||||||
|
|
Loading…
Reference in New Issue