UNPKG

@atproto/oauth-client

Version:

OAuth client for ATPROTO PDS. This package serves as common base for environment-specific implementations (NodeJS, Browser, React-Native).

10 lines 318 B
import { SimpleStore } from '@atproto-labs/simple-store'; import { Key } from '@atproto/jwk'; export type InternalStateData = { iss: string; dpopKey: Key; verifier?: string; appState?: string; }; export type StateStore = SimpleStore<string, InternalStateData>; //# sourceMappingURL=state-store.d.ts.map