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