source: trip-planner-front/node_modules/@angular-devkit/architect/node/node-modules-architect-host.d.ts@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.0 KB
Line 
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 */
8import { json, workspaces } from '@angular-devkit/core';
9import { BuilderInfo } from '../src';
10import { Target } from '../src/input-schema';
11import { ArchitectHost, Builder } from '../src/internal';
12export declare type NodeModulesBuilderInfo = BuilderInfo & {
13 import: string;
14};
15export interface WorkspaceHost {
16 getBuilderName(project: string, target: string): Promise<string>;
17 getMetadata(project: string): Promise<json.JsonObject>;
18 getOptions(project: string, target: string, configuration?: string): Promise<json.JsonObject>;
19 hasTarget(project: string, target: string): Promise<boolean>;
20 getDefaultConfigurationName(project: string, target: string): Promise<string | undefined>;
21}
22export declare class WorkspaceNodeModulesArchitectHost implements ArchitectHost<NodeModulesBuilderInfo> {
23 protected _root: string;
24 private workspaceHost;
25 constructor(workspaceHost: WorkspaceHost, _root: string);
26 constructor(workspace: workspaces.WorkspaceDefinition, _root: string);
27 getBuilderNameForTarget(target: Target): Promise<string>;
28 /**
29 * Resolve a builder. This needs to be a string which will be used in a dynamic `import()`
30 * clause. This should throw if no builder can be found. The dynamic import will throw if
31 * it is unsupported.
32 * @param builderStr The name of the builder to be used.
33 * @returns All the info needed for the builder itself.
34 */
35 resolveBuilder(builderStr: string): Promise<NodeModulesBuilderInfo>;
36 getCurrentDirectory(): Promise<string>;
37 getWorkspaceRoot(): Promise<string>;
38 getOptionsForTarget(target: Target): Promise<json.JsonObject | null>;
39 getProjectMetadata(target: Target | string): Promise<json.JsonObject | null>;
40 loadBuilder(info: NodeModulesBuilderInfo): Promise<Builder>;
41}
Note: See TracBrowser for help on using the repository browser.