liveperson-functions-cli
Version:
LivePerson Functions CLI
14 lines (13 loc) • 627 B
TypeScript
import { FileService } from '../../service/file.service';
import { ILambda } from '../../types';
export declare abstract class DeploymentController {
private fileService;
constructor(fileService: FileService);
/**
* Gather information for passed lambda functions and enhance it with the current accountId
* @param {string[]} lambdaFunctions - Passed lambda function
* @returns {Promise<ILambda[]>} - Lambdas from the platform enhanced with the current accountId
* @memberof DeploymentController
*/
collectLambdaInformationForAllLambdas(lambdaFunctions: string[]): Promise<ILambda[]>;
}