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

x/automerge_wasm/automerge_wasm.js>FullValueWithId

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