UNPKG

alks

Version:
11 lines (8 loc) 167 B
export interface TokenAuth { token: string; } export interface PasswordAuth { userid: string; password: string; } export type Auth = TokenAuth | PasswordAuth;