cron-expression-input.component.d.ts 1.2 KB

123456789101112131415161718192021
  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 { EventEmitter } from '@angular/core';
  6. import { CronChangeType, TimeType } from './typings';
  7. import * as i0 from "@angular/core";
  8. export declare class NzCronExpressionInputComponent {
  9. value: string;
  10. label: TimeType;
  11. disabled: boolean;
  12. readonly focusEffect: EventEmitter<keyof import("./typings").Cron>;
  13. readonly blurEffect: EventEmitter<void>;
  14. readonly getValue: EventEmitter<CronChangeType>;
  15. focusInputEffect(event: FocusEvent): void;
  16. blurInputEffect(): void;
  17. setValue(): void;
  18. static ɵfac: i0.ɵɵFactoryDeclaration<NzCronExpressionInputComponent, never>;
  19. static ɵcmp: i0.ɵɵComponentDeclaration<NzCronExpressionInputComponent, "nz-cron-expression-input", ["nzCronExpressionInput"], { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "focusEffect": "focusEffect"; "blurEffect": "blurEffect"; "getValue": "getValue"; }, never, never, true, never>;
  20. static ngAcceptInputType_disabled: unknown;
  21. }