infracloud/scripts/node_modules/aws-sdk/lib/model/index.d.ts

4 lines
201 B
TypeScript

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