@tldraw/utils
Version:
tldraw infinite canvas SDK (private utilities).
11 lines (10 loc) • 290 B
text/typescript
/** @public */
export type JsonValue = JsonPrimitive | JsonArray | JsonObject
/** @public */
export type JsonPrimitive = boolean | null | string | number
/** @public */
export type JsonArray = JsonValue[]
/** @public */
export interface JsonObject {
[key: string]: JsonValue | undefined
}