@looker/sdk-rtl
Version:
Looker SDK Runtime Library
9 lines (8 loc) • 378 B
TypeScript
import type { IRequestProps, ITransport } from './transport';
import { OAuthSession } from './oauthSession';
import type { IApiSettings } from './apiSettings';
export declare class BrowserSession extends OAuthSession {
settings: IApiSettings;
constructor(settings: IApiSettings, transport?: ITransport);
authenticate(props: IRequestProps): Promise<IRequestProps>;
}