provide-icons.d.ts 688 B

123456789101112131415161718
  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 { EnvironmentProviders, Provider } from '@angular/core';
  6. import { IconDefinition } from '@ant-design/icons-angular';
  7. /**
  8. * Provide icon definitions for NzIcon in root
  9. *
  10. * @param icons Icon definitions
  11. */
  12. export declare const provideNzIcons: (icons: IconDefinition[]) => EnvironmentProviders;
  13. /**
  14. * Provide icon definitions for NzIcon in feature module or standalone component
  15. *
  16. * @param icons Icon definitions
  17. */
  18. export declare const provideNzIconsPatch: (icons: IconDefinition[]) => Provider[];