revision-ui/src/data/fetchData.ts
Joshua Coles e967244158
Some checks failed
Build and Publish Docker Container / build (push) Failing after 3m12s
Parse postgres connection information out of the environment
2024-02-11 18:59:32 +00:00

18 lines
296 B
TypeScript

"use server";
export interface Data {
projects: {
projectId: number,
name: string,
color: string,
}[],
timeEntries: {
projectId: number,
start: string,
end: string,
duration: number,
// description: string,
}[],
}