aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/models/projects/ProjectMeta.ts
blob: c583b47c51656d746468be18f17dd5e91ebe40dc (plain) (blame)
1
2
3
4
5
6
7
import type { Temporal } from "temporal-polyfill"
import type { User } from "../base/User"

export type ProjectMeta = {
    created: Temporal.PlainDateTime,
    createdBy: User,
}