project-style-file.d.ts 571 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.io/license
  7. */
  8. import { WorkspaceProject } from '@angular-devkit/core/src/experimental/workspace';
  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: WorkspaceProject, extension?: string): string | null;