| 5 | import {IKeyValueStorage} from '@walletconnect/keyvaluestorage'; |
| 6 | |
| 7 | export class JSONFileStorage implements IKeyValueStorage { |
| 8 | private writeQueue = Promise.resolve(); |
| 9 | |
| 10 | constructor(private readonly sessionPath: string) {} |
nothing calls this directly
no outgoing calls
no test coverage detected