UNPKG

@practicaloptimism/uniplexer

Version:

A multiplexer for 3rd party service providers and application protocols

15 lines (10 loc) 323 B
import { CreateItemStore } from '../../../@utility/data-structures/database' import { storeTable } from '../variables' const createItemStore: CreateItemStore = method async function method (storeId: string): Promise<any[]> { storeTable[storeId] = {} return Promise.resolve([storeId]) } export { createItemStore }