UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

8 lines (7 loc) 341 B
import { DialogProps } from './dialog'; export declare type DialogShowProps = Omit<DialogProps, 'visible' | 'destroyOnClose' | 'forceRender'>; export declare type DialogShowHandler = { close: () => void; }; export declare const closeFnSet: Set<() => void>; export declare function show(props: DialogShowProps): DialogShowHandler;