slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
10 lines (9 loc) • 386 B
TypeScript
import { Types } from "./type";
import { widgetClass } from "./widget";
declare const __slightning_coco_widget_exports__: {
type?: Types;
widget?: new (props: object) => widgetClass;
};
export declare const widgetExports: typeof __slightning_coco_widget_exports__;
export declare function exportWidget(types: Types, widget: new (props: object) => widgetClass): void;
export {};