input-schema.d.ts 371 B

12345678910111213141516171819
  1. export type 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. [property: string]: any;
  13. };
  14. export type Target = {
  15. configuration?: string;
  16. project: string;
  17. target: string;
  18. [property: string]: any;
  19. };