operator-schema.d.ts 376 B

12345678910111213141516171819
  1. /**
  2. * All input types of builders that perform operations on one or multiple sub-builders.
  3. */
  4. export interface Schema {
  5. builders?: Builder[];
  6. targets?: Target[];
  7. }
  8. export interface Builder {
  9. builder: string;
  10. options?: {
  11. [key: string]: any;
  12. };
  13. }
  14. export interface Target {
  15. overrides?: {
  16. [key: string]: any;
  17. };
  18. target: string;
  19. }