Variable TimeTrackingConfigurationSchemaConst
TimeTrackingConfigurationSchema: ZodObject<
{
defaultUnit: ZodCustom<
"day"
| "hour"
| "minute"
| "week"
| string & {},
"day" | "hour" | "minute" | "week" | string & {},
>;
timeFormat: ZodCustom<
"days"
| "hours"
| string & {}
| "pretty",
"days" | "hours" | string & {} | "pretty",
>;
workingDaysPerWeek: ZodNumber;
workingHoursPerDay: ZodNumber;
},
$loose,
> = ...
Details of the time tracking configuration.