type ValueAccessor<T> = () => T & object;type ValueAccessor<T> = () => T & object;Defined in: packages/lit-query/src/accessor.ts:32
A callable accessor with a current property for reading the latest controller result.
Controller creators and cache state helpers return this shape so render code can use either result() or result.current.
readonly current: T;readonly current: T;T
const query = this.todos()
const sameQuery = this.todos.currentconst query = this.todos()
const sameQuery = this.todos.current