123456789101112131415161718192021222324252627282930313233 |
- export type Schema = {
- /**
- * Link to schema.
- */
- $schema?: string;
- builders: {
- [key: string]: BuilderValue;
- };
- [property: string]: any;
- };
- export type BuilderValue = Builder | string;
- /**
- * Target options for Builders.
- */
- export type Builder = {
- /**
- * The builder class module.
- */
- class?: string;
- /**
- * Builder description.
- */
- description: string;
- /**
- * The next generation builder module.
- */
- implementation?: string;
- /**
- * Schema for builder option validation.
- */
- schema: string;
- [property: string]: any;
- };
|