UNPKG

@travetto/yaml

Version:

Simple YAML support, provides only clean subset of yaml

2 lines 188 B
export type SimpleType = { [key: string]: SimpleType } | SimpleType[] | undefined | null | string | boolean | RegExp | Date | number; export type SimpleObject = Record<string, SimpleType>;