import type { Store as MppStore } from 'mppx' import { Store } from 'tapimo' declare const namespace: Store.durableObject.Namespace type Items = { channel: { spent: bigint } } describe('durableObject', () => { test('matches typed atomic stores', () => { expectTypeOf(Store.durableObject(namespace)).toExtend>() expectTypeOf(Store.durableObject(namespace)).toEqualTypeOf>() }) })