@commit451/salamander
Version:
Never be AFK
11 lines • 375 B
TypeScript
export interface StoredAuth {
refreshToken?: string;
accessToken?: string;
userId?: string;
email?: string;
encryptionCode?: string;
}
export declare function saveAuth(auth: StoredAuth): Promise<void>;
export declare function loadAuth(): Promise<StoredAuth | null>;
export declare function clearAuth(): Promise<void>;
//# sourceMappingURL=storage.d.ts.map