UNPKG

@4players/odin-common

Version:

A collection of commonly used type definitions and utility functions across ODIN web projects

5 lines (4 loc) 173 B
export type JsonValue = string | number | boolean | null | JsonValue[] | { [key: string]: JsonValue; }; export declare function toRaw<T extends JsonValue>(value: T): T;