add-declaration-to-ng-module.d.ts 569 B

12345678910111213141516171819
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.dev/license
  7. */
  8. import { Rule } from '@angular-devkit/schematics';
  9. export interface DeclarationToNgModuleOptions {
  10. module?: string;
  11. path?: string;
  12. name: string;
  13. flat?: boolean;
  14. export?: boolean;
  15. type: string;
  16. skipImport?: boolean;
  17. standalone?: boolean;
  18. }
  19. export declare function addDeclarationToNgModule(options: DeclarationToNgModuleOptions): Rule;