UNPKG

rsocket-rxjs

Version:
10 lines (9 loc) 249 B
export declare type AuthType = 'simple' | 'bearer' | 'unknown'; export interface Authentication { type: AuthType; typeString?: string; token?: string; username?: string; password?: string; customData?: Uint8Array; }