import { TimesheetDoc } from '~core/modules/timesheet'; import { UserDoc } from '~core/modules/user'; export interface TimesheetRecord { id: string; in: string; out: string; duration: number | null; doc: TimesheetDoc; } export interface Employee extends UserDoc { since: string; } export interface UpdateTimesheetDTO { id: string; startAt: string; endAt: string; } export interface UpdatePasscodeDTO { userId: string; passcode: string; }