fix: statistic countdown typings (#1375)

pull/1384/head
Lukinoh 2019-11-04 09:53:34 +01:00 committed by tangjinzhou
parent 1fd1735cb7
commit 548f10d357
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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 '.'