UNPKG

@uprtcl/http-provider

Version:

_Prtcl provider wrappers around the native fetch api

9 lines (8 loc) 195 B
export interface JwtToken { userId: string; jwt: string; } /** Abtraction for JWT token providers */ export interface HttpAuthentication { obtainToken(): Promise<JwtToken>; }