schema.d.ts 403 B

1234567891011121314151617181920
  1. /**
  2. * Generates a configuration file in the given project.
  3. */
  4. export interface Schema {
  5. /**
  6. * The name of the project.
  7. */
  8. project: string;
  9. /**
  10. * Specifies which type of configuration file to create.
  11. */
  12. type: Type;
  13. }
  14. /**
  15. * Specifies which type of configuration file to create.
  16. */
  17. export declare enum Type {
  18. Browserslist = "browserslist",
  19. Karma = "karma"
  20. }