10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
/**
|
|
Watch a folder and resolve promise once a file is modified
|
|
|
|
@param {string} dir
|
|
@param callback
|
|
@return {Promise}
|
|
*/
|
|
declare function watch(dir: any, callback: any): void;
|
|
export default watch;
|
|
//# sourceMappingURL=watch.d.ts.map
|