Files
failwell/src/modules/record/interfaces/recordable.ts
2023-04-17 21:13:27 +02:00

12 lines
261 B
TypeScript

import type { ISODate } from '@/shared/types/date'
import type { TimeRange } from './time-range'
export interface Recordable {
taskId: string
start: ISODate
end?: ISODate
stepRecords: Record<string, TimeRange>
notes: string
breakTime?: TimeRange
}