Some checks failed
Build and Publish Docker Container / build (push) Failing after 3m12s
18 lines
296 B
TypeScript
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,
|
|
}[],
|
|
}
|