UNPKG

narraleaf

Version:

Create your visual novel with Electron and React

7 lines (6 loc) 245 B
type ThrottledFunction = ((...args: any[]) => void) & { cleanup: () => void; }; export declare function throttle(func: () => void, limit: number): ThrottledFunction; export declare const isValidImageUrl: (url: string) => boolean; export {};