UNPKG

discord-bot-cdk-construct

Version:

A quick CDK Construct for creating a serverless Discord bot in AWS!

5 lines (4 loc) 201 B
export type DocumentType = Scalar | Structure | List; type Scalar = string | number | boolean | null; type Structure = { [member: string]: DocumentType }; interface List extends Array<DocumentType> {}