@looker/sdk-rtl
Version:
Looker SDK Runtime Library
11 lines (10 loc) • 454 B
TypeScript
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>;
}