UNPKG

@looker/sdk-rtl

Version:
11 lines (10 loc) 454 B
import { AuthSession } from './authSession'; import type { IRequestProps, ITransport } from './transport'; import type { IApiSettings } from './apiSettings'; export declare abstract class ProxySession extends AuthSession { settings: IApiSettings; proxyUrl: string; constructor(settings: IApiSettings, proxyUrl: string, transport?: ITransport); isAuthenticated(): boolean; authenticate(props: IRequestProps): Promise<IRequestProps>; }