Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetColumnData

type GetColumnData<TColumn extends AnyColumn, TInferMode extends "query" | "raw" = "query"> = TInferMode extends "raw" ? TColumn["_"]["data"] : TColumn["_"]["notNull"] extends true ? TColumn["_"]["data"] : TColumn["_"]["data"] | null;

§Type Parameters

§
TColumn extends AnyColumn
[src]
§
TInferMode extends "query" | "raw" = "query"
[src]

§Type

§
TInferMode extends "raw" ? TColumn["_"]["data"] : TColumn["_"]["notNull"] extends true ? TColumn["_"]["data"] : TColumn["_"]["data"] | null
[src]