UNPKG

liveperson-functions-cli

Version:
20 lines (19 loc) 497 B
interface ILogsConfig { lambdaFunction: string; inputFlags?: { start?: string; end?: string; levels?: string[]; removeHeader?: boolean; }; } export declare class LogsController { /** * Gets the logs of the passed function * @param {ILogsConfig} - lambda function and flags * @returns {Promise<void>} * @memberof LogsController */ static getLogs({ lambdaFunction, inputFlags, }: ILogsConfig): Promise<void>; } export {};