@mindfiredigital/page-builder
Version:
13 lines (12 loc) • 409 B
TypeScript
export declare function showNotification(message: string): void;
export declare function showDialogBox(
message: string,
onConfirm: () => void,
onCancel: () => void
): void;
export declare function syntaxHighlightHTML(html: string): string;
export declare function syntaxHighlightCSS(css: string): string;
export declare function debounce(
func: Function,
delay: number
): (...args: any[]) => void;