ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
29 lines (28 loc) • 1.44 kB
TypeScript
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
import { Direction, Directionality } from '@angular/cdk/bidi';
import { ChangeDetectorRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
import { NgStyleInterface } from 'ng-zorro-antd/core/types';
import { NzStatisticValueType } from './typings';
import * as i0 from "@angular/core";
export declare class NzStatisticComponent implements OnDestroy, OnInit {
protected cdr: ChangeDetectorRef;
private directionality;
nzPrefix?: string | TemplateRef<void>;
nzSuffix?: string | TemplateRef<void>;
nzTitle?: string | TemplateRef<void>;
nzValue?: NzStatisticValueType;
nzValueStyle: NgStyleInterface;
nzValueTemplate?: TemplateRef<{
$implicit: NzStatisticValueType;
}>;
dir: Direction;
private destroy$;
constructor(cdr: ChangeDetectorRef, directionality: Directionality);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NzStatisticComponent, [null, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<NzStatisticComponent, "nz-statistic", ["nzStatistic"], { "nzPrefix": "nzPrefix"; "nzSuffix": "nzSuffix"; "nzTitle": "nzTitle"; "nzValue": "nzValue"; "nzValueStyle": "nzValueStyle"; "nzValueTemplate": "nzValueTemplate"; }, {}, never, never>;
}