statistic.component.d.ts 1.6 KB

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { Direction } from '@angular/cdk/bidi';
  6. import { ChangeDetectorRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
  7. import { NgStyleInterface } from 'ng-zorro-antd/core/types';
  8. import { NzStatisticValueType } from './typings';
  9. import * as i0 from "@angular/core";
  10. export declare class NzStatisticComponent implements OnDestroy, OnInit {
  11. nzPrefix?: string | TemplateRef<void>;
  12. nzSuffix?: string | TemplateRef<void>;
  13. nzTitle?: string | TemplateRef<void>;
  14. nzValue?: NzStatisticValueType;
  15. nzValueStyle: NgStyleInterface;
  16. nzValueTemplate?: TemplateRef<{
  17. $implicit: NzStatisticValueType;
  18. }>;
  19. nzLoading: boolean;
  20. dir: Direction;
  21. private destroy$;
  22. protected cdr: ChangeDetectorRef;
  23. private directionality;
  24. ngOnInit(): void;
  25. ngOnDestroy(): void;
  26. static ɵfac: i0.ɵɵFactoryDeclaration<NzStatisticComponent, never>;
  27. static ɵcmp: i0.ɵɵComponentDeclaration<NzStatisticComponent, "nz-statistic", ["nzStatistic"], { "nzPrefix": { "alias": "nzPrefix"; "required": false; }; "nzSuffix": { "alias": "nzSuffix"; "required": false; }; "nzTitle": { "alias": "nzTitle"; "required": false; }; "nzValue": { "alias": "nzValue"; "required": false; }; "nzValueStyle": { "alias": "nzValueStyle"; "required": false; }; "nzValueTemplate": { "alias": "nzValueTemplate"; "required": false; }; "nzLoading": { "alias": "nzLoading"; "required": false; }; }, {}, never, never, true, never>;
  28. static ngAcceptInputType_nzLoading: unknown;
  29. }