UNPKG

@uprtcl/http-provider

Version:

_Prtcl provider wrappers around the native fetch api

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