UNPKG

concordialang-ui-core

Version:
12 lines (11 loc) 310 B
/** * This class must be used by plugins to generate UI elements. */ export declare abstract class Widget { protected name: string; protected props: { [key: string]: string | number | boolean | any[]; }; constructor(props: any, name: string); abstract renderToString(): string; }