UNPKG

dce-mango

Version:

Harvard DCE's Non-relational DB Wrapper.

16 lines (14 loc) 263 B
/** * A test DocumentType for different functionalities. * @author Benedikt Arnarsson */ type TestDocument = { id: number, msg: string, options: { uppercase: boolean, exclamation: boolean, }, rating?: number, }; export default TestDocument;