UNPKG

@citiwave/im-disclaimer-modal

Version:

A customizable React disclaimer modal component with theme support

15 lines (14 loc) 412 B
interface CreateOptions { dir?: string; title?: string; prefix?: string; defaultOpen?: boolean; theme?: 'light' | 'dark'; accent?: string; } interface RemoveOptions { dir?: string; } export declare function createDisclaimer(name: string, options: CreateOptions): Promise<void>; export declare function removeDisclaimer(name: string, options: RemoveOptions): Promise<void>; export {};