UNPKG

ts-toolbelt

Version:

TypeScript's largest utility library

8 lines (7 loc) 125 B
import { Value } from './Value'; /** * An object of JSON [[Value]]s */ export interface Object { [k: string]: Value; }