Skip to main content

@rtorcato/db-common / FieldSpec

Type Alias: FieldSpec<T>

FieldSpec<T> = keyof T | [keyof T, (val) => unknown]

Defined in: map-rows.ts:6

Per-column mapping rule: rename only ('createdAt') or rename + coerce (['active', Boolean]). Drivers hand back what they store — SQLite returns 0/1 for booleans, dates as strings — so coercion lives next to the rename.

Type Parameters

T

T