project-style-file.d.ts 551 B

12345678910111213
  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 { workspaces } from '@angular-devkit/core';
  9. /**
  10. * Gets a style file with the given extension in a project and returns its path. If no
  11. * extension is specified, any style file with a valid extension will be returned.
  12. */
  13. export declare function getProjectStyleFile(project: workspaces.ProjectDefinition, extension?: string): string | null;