UNPKG

ts-toolbelt

Version:

TypeScript's largest utility library

7 lines (6 loc) 117 B
import { Value } from './Value'; /** * A list of JSON [[Value]]s */ export interface List extends Array<Value> { }