operator-schema.d.ts 457 B

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