liveperson-functions-cli
Version:
LivePerson Functions CLI
21 lines (20 loc) • 556 B
TypeScript
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 {};