@plurid/performer-cli
Version:
Command-Line Interface for Performer
11 lines (10 loc) • 447 B
TypeScript
declare const fileExists: (path: string) => Promise<boolean>;
/**
* Source: https://stackoverflow.com/a/57335271
*
* @param callback Function to be called.
* @param wait Debounce time.
*/
declare function debouncedCallback<A extends any[]>(callback: (...args: A) => void, wait: number): (...args: A) => void;
declare const extractServerName: (server: string) => string;
export { fileExists, debouncedCallback, extractServerName, };