UNPKG

@proofgeist/fmdapi

Version:
9 lines 304 B
type MaybePromise<T> = Promise<T> | T; export type TokenStoreDefinitions = { getKey?: () => string; getToken: (key: string) => MaybePromise<string | null>; setToken: (key: string, value: string) => void; clearToken: (key: string) => void; }; export {}; //# sourceMappingURL=types.d.ts.map