ribbon.component.d.ts 913 B

123456789101112131415
  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 { OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
  6. import * as i0 from "@angular/core";
  7. export declare class NzRibbonComponent implements OnChanges {
  8. nzColor: string | undefined;
  9. nzPlacement: 'start' | 'end';
  10. nzText: string | TemplateRef<void> | null;
  11. presetColor: string | null;
  12. ngOnChanges(changes: SimpleChanges): void;
  13. static ɵfac: i0.ɵɵFactoryDeclaration<NzRibbonComponent, never>;
  14. static ɵcmp: i0.ɵɵComponentDeclaration<NzRibbonComponent, "nz-ribbon", ["nzRibbon"], { "nzColor": { "alias": "nzColor"; "required": false; }; "nzPlacement": { "alias": "nzPlacement"; "required": false; }; "nzText": { "alias": "nzText"; "required": false; }; }, {}, never, ["*"], true, never>;
  15. }