modal-config.d.ts 729 B

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 { InjectionToken } from '@angular/core';
  6. import { NzConfigKey } from 'ng-zorro-antd/core/config';
  7. export declare const ZOOM_CLASS_NAME_MAP: {
  8. enter: string;
  9. enterActive: string;
  10. leave: string;
  11. leaveActive: string;
  12. };
  13. export declare const FADE_CLASS_NAME_MAP: {
  14. enter: string;
  15. enterActive: string;
  16. leave: string;
  17. leaveActive: string;
  18. };
  19. export declare const MODAL_MASK_CLASS_NAME = "ant-modal-mask";
  20. export declare const NZ_CONFIG_MODULE_NAME: NzConfigKey;
  21. export declare const NZ_MODAL_DATA: InjectionToken<any>;