Skip to main content

Type Alias: Json

Json = string | number | boolean | null | Json[] | {[key: string]: Json; }

Defined in: types.ts:9

Any JSON-serializable value.

Everything a chat persists has to survive JSON.stringify, because the whole transcript travels inside the game's save snapshot.