UNPKG

near-contract-parser

Version:
11 lines (10 loc) 147 B
/** * Data types supported by JSON format */ export type JsonType = | 'string' | 'number' | 'object' | 'array' | 'boolean' | 'null';