UNPKG

harvest-overtime

Version:
4 lines (3 loc) 237 B
import { Employee, Report, Timesheet } from "../models"; export declare function getTimesheet(date: string, employees: Employee[]): Timesheet; export declare function getOvertime(timesheet: Timesheet[], regularDayHours: number): Report;