lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
19 lines (18 loc) • 465 B
TypeScript
/**
* Delete the Lambda Layer
*/
declare function deleteLayer(): Promise<void>;
/**
* Deploy the infrastructure
*/
declare function deployInfrastructure(): Promise<void>;
/**
* Remove the infrastructure
*/
declare function removeInfrastructure(): Promise<void>;
export declare const InfraDeploy: {
deployInfrastructure: typeof deployInfrastructure;
removeInfrastructure: typeof removeInfrastructure;
deleteLayer: typeof deleteLayer;
};
export {};