Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:11
T
TActions extends StoreActionMap = never
new Store<T, TActions>(getValue): Store<T, TActions>;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:14
(prev?) => T
Store<T, TActions>
new Store<T, TActions>(initialValue): Store<T, TActions>;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:15
T
Store<T, TActions>
new Store<T, TActions>(initialValue, actionsFactory): Store<T, TActions>;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:16
NonFunction<T>
StoreActionsFactory<T, TActions>
Store<T, TActions>
readonly actions: TActions;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:13
get state(): T;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:18
T
get(): T;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:19
T
setState(updater): void;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:17
(prev) => T
void
subscribe(observerOrFn): Subscription;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/store.d.ts:20
Observer<T> | ((value) => void)