UNPKG

snowflake-sdk

Version:
11 lines (10 loc) 253 B
export interface AuthRequestBody { data: { [key: string]: any; }; } export interface AuthClass { updateBody(body: AuthRequestBody): void; authenticate(): Promise<void>; reauthenticate(body: AuthRequestBody): Promise<void>; }