UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

10 lines (9 loc) 263 B
/** * Watch for file changes in a folder and trigger a rebuild of the Lambdas * @param folder */ declare function watchForFileChanges(folder: string): void; export declare const FileWatcher: { watchForFileChanges: typeof watchForFileChanges; }; export {};