5 lines
205 B
TypeScript
5 lines
205 B
TypeScript
import { PathLike } from 'node:fs'
|
|
|
|
export declare function watchFileCreated(filename: PathLike): Promise<void>
|
|
export declare function watchForWrite(filename: PathLike, testString: string): Promise<void>
|