/** * Individual overtime data point. */ export type OvertimeData = { /** * Date in YYYY-MM-DD format */ date: string; /** * Cost value for this time period */ value: string; };