Files
pyrofetes-frontend/node_modules/@angular-devkit/architect/src/input-schema.d.ts
T
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

20 lines
371 B
TypeScript
Executable File

export type Schema = {
currentDirectory: string;
id: number;
info: {
[key: string]: any;
};
options?: {
[key: string]: any;
};
target?: Target;
workspaceRoot: string;
[property: string]: any;
};
export type Target = {
configuration?: string;
project: string;
target: string;
[property: string]: any;
};