import { refreshableSettings, createPersistedStore } from '@@/datatables/types'; import { TableSettings } from './types'; export function createStore(storageKey: string) { return createPersistedStore(storageKey, 'created', (set) => ({ ...refreshableSettings(set), })); }