2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00
website/models/utils.ts

15 lines
345 B
TypeScript

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" })