type alias BigtableValueEncoding
Since 0.2.0

How a value round-trips through a cell.

  • 'tagged' (default) writes <tag>:<payload>, so a number, boolean, null, Date or object comes back as itself.
  • 'raw' writes String(value) and reads every cell as a string — the shape a table written outside this framework already has.

Definition

"tagged" | "raw"

Usage

import { type BigtableValueEncoding } from "database-plugin/src/index.ts";