schema.d.ts 166 B

123456789
  1. /**
  2. * Generates and configures environment files for a project.
  3. */
  4. export interface Schema {
  5. /**
  6. * The name of the project.
  7. */
  8. project: string;
  9. }