@vismaux/ngx-nordic-cool
Version:
Common Nordic-Cool components for Angular.
12 lines (11 loc) • 658 B
TypeScript
import { workspaces } from '@angular-devkit/core';
import { ProjectDefinition } from '@angular-devkit/core/src/workspace';
/**
* Resolves options for the build target of the given project
*/
export declare function getProjectTargetOptions(project: workspaces.ProjectDefinition, buildTarget: string): Record<string, import("@angular-devkit/core").JsonValue | undefined>;
/**
* Gets a style file with the given extension in a project and returns its path. If no
* extension is specified, any style file with a valid extension will be returned.
*/
export declare function getProjectStyleFile(project: ProjectDefinition, extension?: string): string | null;