Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/automerge_wasm/index.d.ts>FullValue

A JSON-like data structure (a CRDT) that can be modified concurrently by different users, and merged again automatically.
Go to Latest
type alias FullValue
import { type FullValue } from "https://deno.land/x/automerge_wasm@0.15.0/index.d.ts";
definition:
| ["str", string]
| ["int", number]
| ["uint", number]
| ["f64", number]
| ["boolean", boolean]
| ["timestamp", Date]
| ["counter", number]
| ["bytes", Uint8Array]
| ["null", null]
| ["map", ObjID]
| ["list", ObjID]
| ["text", ObjID]
| ["table", ObjID]