UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

6 lines (5 loc) 157 B
import type { JWT } from '../../../dt/index.js'; export interface AuthDataStore { get(): Promise<JWT | null>; set(jwt: JWT | null): Promise<void>; }