| 782 | |
| 783 | // Mock DurableObjectStorage - simple Map-based implementation |
| 784 | class MockDurableObjectStorage { |
| 785 | private data = new Map<string, any>(); |
| 786 | |
| 787 | async get<T>(key: string): Promise<T | undefined>; |
nothing calls this directly
no outgoing calls
no test coverage detected