UNPKG

trainingpeaks-sdk

Version:
7 lines 251 B
import type { Session } from '../../domain/index.js'; export type SessionStorage = { get: () => Promise<Session | null>; set: (session: Session) => Promise<void>; clear: () => Promise<void>; }; //# sourceMappingURL=session-storage.d.ts.map