API
interface ExposedComponent<T extends {
new (...args: any[]): any;
}> {new (...args: any[]): any;children?: 'any' | 'text' | ExposedComponent<any>[] | false;component: T;description: string;name: string;props?: ComponentPropSchema<T>;}ExposedComponent
@typeT{
new (...args: any[]): any;
}children
'any' | 'text' | ExposedComponent<any>[] | falsecomponent
Tdescription
stringname
stringprops
ComponentPropSchema<T>