You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
624 B

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;
};