2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/models/utils.ts

15 lines
342 B
TypeScript
Raw Normal View History

import { Type } from '@sinclair/typebox'
export const date = {
createdAt: Type.String({
format: 'date-time',
description: 'Created date time'
}),
updatedAt: Type.String({
format: 'date-time',
description: 'Last updated date time'
})
}
export const id = Type.Integer({ minimum: 1, description: 'Unique identifier' })