lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
18 lines (17 loc) • 672 B
TypeScript
import { LldConfig } from './types/lldConfig.js';
import { LambdaResource } from './types/resourcesDiscovery.js';
/**
* Get the names of the supported frameworks
*/
declare function getSupportedFrameworksNames(): string[];
/**
* Get the name of the current framework
*/
declare function getCurrentFrameworkName(config: LldConfig): Promise<string | undefined>;
declare function getLambdas(config: LldConfig): Promise<LambdaResource[] | undefined>;
export declare const ResourceDiscovery: {
getSupportedFrameworksNames: typeof getSupportedFrameworksNames;
getCurrentFrameworkName: typeof getCurrentFrameworkName;
getLambdas: typeof getLambdas;
};
export {};