source: trip-planner-front/node_modules/@angular-devkit/architect/src/input-schema.d.ts@ 188ee53

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

initial commit

  • Property mode set to 100644
File size: 317 bytes
Line 
1export interface Schema {
2 currentDirectory: string;
3 id: number;
4 info: {
5 [key: string]: any;
6 };
7 options?: {
8 [key: string]: any;
9 };
10 target?: Target;
11 workspaceRoot: string;
12}
13export interface Target {
14 configuration?: string;
15 project: string;
16 target: string;
17}
Note: See TracBrowser for help on using the repository browser.