hash-code.component.d.ts 1.3 KB

1234567891011121314151617181920212223
  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 { ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
  6. import { NzModeType } from './typings';
  7. import * as i0 from "@angular/core";
  8. export declare class NzHashCodeComponent implements OnChanges {
  9. private cdr;
  10. nzValue: string;
  11. nzTitle: string;
  12. nzLogo: TemplateRef<void> | string;
  13. nzMode: NzModeType;
  14. nzType: 'default' | 'primary';
  15. readonly nzOnCopy: EventEmitter<string>;
  16. hashDataList: string[];
  17. copyHandle(): void;
  18. constructor(cdr: ChangeDetectorRef);
  19. ngOnChanges(changes: SimpleChanges): void;
  20. setData(value: string): void;
  21. static ɵfac: i0.ɵɵFactoryDeclaration<NzHashCodeComponent, never>;
  22. static ɵcmp: i0.ɵɵComponentDeclaration<NzHashCodeComponent, "nz-hash-code", ["nzHashCode"], { "nzValue": { "alias": "nzValue"; "required": false; }; "nzTitle": { "alias": "nzTitle"; "required": false; }; "nzLogo": { "alias": "nzLogo"; "required": false; }; "nzMode": { "alias": "nzMode"; "required": false; }; "nzType": { "alias": "nzType"; "required": false; }; }, { "nzOnCopy": "nzOnCopy"; }, never, never, true, never>;
  23. }