import { InMemoryBackingStore } from "./inMemoryBackingStore.js"; /** This class is used to create instances of InMemoryBackingStore */ export class InMemoryBackingStoreFactory { createBackingStore() { return new InMemoryBackingStore(); } } //# sourceMappingURL=inMemoryBackingStoreFactory.js.map