config.d.ts 689 B

12345678910111213
  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. /**
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  8. */
  9. import { InjectionToken, TemplateRef, Type } from '@angular/core';
  10. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  11. export type NzEmptySize = 'normal' | 'small' | '';
  12. export type NzEmptyCustomContent = Type<NzSafeAny> | TemplateRef<NzSafeAny> | string | null;
  13. export declare const NZ_EMPTY_COMPONENT_NAME: InjectionToken<string>;