blob: 2108b8811274bcedcea07bea1e6b1d17389ba4e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { WorkLabel } from "./WorkLabel";
import type { WorkCategory } from "./WorkCategory";
import type { Project } from "../projects/Project";
export type WorkEntry = {
id: string,
start: string,
stop: string,
description: string,
labels?: Array<WorkLabel>,
category?: WorkCategory,
project?: Project
}
|