Within a single file, I have the ability to include the following object:
type NewType = { dateCreated: Date }
export const myModel: NewType = { dateCreated: new Date() }
I am particularly intrigued by the prospect of importing NewType
alongside the import of myModel
.