(type: string, ...ids: string[])
| 832 | |
| 833 | // Key construction matching the persister's format |
| 834 | const constructStorageKey = (type: string, ...ids: string[]) => |
| 835 | STORAGE_PREFIX + type + JSON.stringify(ids).slice(1, -1); |
| 836 | |
| 837 | export const mockDurableObjectStorage: Persistable<MockDurableObjectStorage> = { |
| 838 | autoLoadPause: 10, |
no outgoing calls
no test coverage detected
searching dependent graphs…