-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathutils.d.ts
35 lines (35 loc) · 922 Bytes
/
utils.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { TestProjectHost } from '@angular-devkit/architect/testing';
import { Path } from '@angular-devkit/core';
export declare const host: TestProjectHost;
export declare const outputPath: Path;
export declare const browserTargetSpec: {
project: string;
target: string;
};
export declare const devServerTargetSpec: {
project: string;
target: string;
};
export declare const extractI18nTargetSpec: {
project: string;
target: string;
};
export declare const karmaTargetSpec: {
project: string;
target: string;
};
export declare const tslintTargetSpec: {
project: string;
target: string;
};
export declare const protractorTargetSpec: {
project: string;
target: string;
};