UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

20 lines (19 loc) 541 B
/** * Check if ".lldebugger" exists in .gitignore */ declare function doesExistInGitIgnore(): Promise<boolean>; /** * Add ".lldebugger" to .gitignore if it doesn't exist * @returns */ declare function addToGitIgnore(): Promise<void>; /** * Remove ".lldebugger" from .gitignore */ declare function removeFromGitIgnore(): Promise<void>; export declare const GitIgnore: { doesExistInGitIgnore: typeof doesExistInGitIgnore; addToGitIgnore: typeof addToGitIgnore; removeFromGitIgnore: typeof removeFromGitIgnore; }; export {};