Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/types.d.ts:49
An atom that is read-only and cannot be set.
const atom = createAtom(() => 42);
// @ts-expect-error - Cannot set a readonly atom
atom.set(43);T
get: () => T;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/types.d.ts:20
T
subscribe: (observer) => Subscription & (next, error?, complete?) => Subscription;Defined in: node_modules/.pnpm/@tanstack+store@0.11.0/node_modules/@tanstack/store/dist/types.d.ts:17