UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

7 lines (6 loc) 273 B
export interface JsonMap { [key: string]: AnyJson; } type JsonArray = undefined[] | null[] | boolean[] | number[] | string[] | JsonMap[] | Date[]; export type AnyJson = undefined | null | boolean | number | string | JsonMap | Date | JsonArray | JsonArray[]; export {};