function createStore<T>(getValue): ReadonlyStore<T>;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:30
T
(prev?) => T
function createStore<T>(initialValue): Store<T>;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:31
T
T
Store<T>
function createStore<T, TActions>(initialValue, actions): Store<T, TActions>;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:32
T
TActions extends StoreActionMap
NonFunction<T>
StoreActionsFactory<T, TActions>
Store<T, TActions>