UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

8 lines (7 loc) 272 B
import type { JWT } from '../../../../dt/index.js'; import type { AuthDataStore } from '../AuthDataStore.js'; export declare class InMemoryAuthDataStore implements AuthDataStore { private jwt; get(): Promise<JWT | null>; set(jwt: JWT | null): Promise<void>; }