liveperson-functions-cli
Version:
LivePerson Functions CLI
13 lines (12 loc) • 345 B
TypeScript
import { FaasService } from './faas.service';
export interface IFaasServiceFactory {
get(accountId: string): FaasService;
}
export declare const factory: {
/**
* Get a faas service instance
* If not created, it will created one.
* @returns {Promise<FaasService>} - faas service
*/
get(): Promise<FaasService>;
};