UNPKG

mobx-keystone-yjs

Version:

Yjs bindings for mobx-keystone

8 lines (4 loc) 257 B
export type PlainPrimitive = string | number | boolean | null | undefined export type PlainValue = PlainPrimitive | PlainObject | PlainArray export type PlainObject = { [key: string]: PlainValue } export interface PlainArray extends Array<PlainValue> {}