Browse Source

fix: statistic countdown typings (#1375)

pull/1384/head
Lukinoh 5 years ago committed by tangjinzhou
parent
commit
548f10d357
  1. 2
      types/statistic/statistic-countdown.d.ts
  2. 4
      types/statistic/statistic.d.ts

2
types/statistic/statistic-countdown.d.ts vendored

@ -5,7 +5,7 @@
import { AntdComponent } from '../component';
import { VNode } from 'vue';
export declare class AStatisticCountdown extends AntdComponent {
export declare class StatisticCountdown extends AntdComponent {
format: string;
/**
* prefix node of value

4
types/statistic/statistic.d.ts vendored

@ -4,10 +4,10 @@
import { AntdComponent } from '../component';
import { VNode } from 'vue';
import AStatisticCountdown from './statistic-countdown';
import { StatisticCountdown } from './statistic-countdown';
export declare class Statistic extends AntdComponent {
static AStatisticCountdown: typeof AStatisticCountdown;
static Countdown: typeof StatisticCountdown;
/**
* decimal separator
* @default '.'

Loading…
Cancel
Save