| 20 | import type { DeviceAuthorization, OAuthFlowConfig, TokenInfo } from '../src/types'; |
| 21 | |
| 22 | class InMemoryStorage implements TokenStorage { |
| 23 | public store = new Map<string, TokenInfo>(); |
| 24 | |
| 25 | async load(name: string): Promise<TokenInfo | undefined> { |
nothing calls this directly
no outgoing calls
no test coverage detected