index.d.ts 201 B

1234
  1. export type DocumentType = Scalar | Structure | List;
  2. type Scalar = string | number | boolean | null;
  3. type Structure = { [member: string]: DocumentType };
  4. interface List extends Array<DocumentType> {}