@uprtcl/http-provider
Version:
_Prtcl provider wrappers around the native fetch api
10 lines (9 loc) • 357 B
TypeScript
export declare class AuthTokenStorage {
readonly tokenStorageId: string;
readonly userStorageId: string;
constructor(tokenStorageId: string, userStorageId: string);
get authToken(): string | undefined;
set authToken(token: string | undefined);
get userId(): string | undefined;
set userId(userId: string | undefined);
}