MCPcopy Create free account
hub / github.com/TanStack/db / constructor

Method constructor

packages/db/src/query/ir.ts:144–148  ·  view source on GitHub ↗
(
    public value: T, // any js value
  )

Source from the content-addressed store, hash-verified

142export class Value<T = any> extends BaseExpression<T> {
143 public type = `val` as const
144 constructor(
145 public value: T, // any js value
146 ) {
147 super()
148 }
149}
150
151export class Func<T = any> extends BaseExpression<T> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected