Files
SerpentRace/SerpentRace_Backend/node_modules/aws-sdk/lib/model/index.d.ts
T
2025-07-11 19:56:28 +02:00

5 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> {}