UNPKG

unomi-sdk-node

Version:

Node module to interact with unomi.

3 lines 244 B
export type JsonGenericValue = string | number | boolean | JsonGenericProperty; export type JsonGenericProperty = { [key: string]: JsonGenericValue }; export type JsonGenericArrayValue = JsonGenericProperty[] | number[] | string[] | boolean[];