UNPKG

liveperson-functions-client

Version:

JavaScript client for LivePerson Functions.

18 lines (17 loc) 502 B
export interface GetUrlOptions { readonly accountId: string; readonly domain: string; readonly apiVersion: string; readonly externalSystem?: string; readonly protocol: (typeof PROTOCOL)[keyof typeof PROTOCOL]; readonly path: string; readonly [others: string]: unknown; } export declare const HTTP_METHOD: Readonly<{ readonly POST: "post"; readonly GET: "get"; }>; export declare const PROTOCOL: Readonly<{ readonly HTTP: "http"; readonly HTTPS: "https"; }>;