@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
11 lines (10 loc) • 445 B
TypeScript
import type { DialogExpose } from "../dialog";
export declare const GlobalDialog: {
toggle(id: string, val?: boolean): boolean;
store: Map<any, any>;
register<D extends string>(name: D, api: DialogExpose, opts?: import("@cn-ui/reactive").BlackBoardOption): Map<any, any> | undefined;
getApp<D extends string>(name: D): DialogExpose;
deleteFn: (name: string) => void;
check(name: string): boolean;
destroy(): void;
};