UNPKG

liveperson-functions-cli

Version:
21 lines (20 loc) 556 B
import { GetView } from '../view/get.view'; interface IGetControllerConfig { getView?: GetView; } interface IGetConfig { domains?: string[]; } export declare class GetController { private readonly getView; private readonly domains; constructor({ getView, }?: IGetControllerConfig); /** * Returns the information about the passed domains. * @param {IGetConfig} - Passed domains * @returns {Promise<void>} - get view * @memberof GetController */ get({ domains }?: IGetConfig): Promise<void>; } export {};