UNPKG

mobx-keystone-yjs

Version:

Yjs bindings for mobx-keystone

8 lines (7 loc) 263 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> { }