UNPKG

@atproto/oauth-client

Version:

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

12 lines (9 loc) 263 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>