UNPKG
harvest-overtime
Version:
latest (3.0.0)
3.0.0
2.2.2
2.2.1
2.1.1
2.1.0
2.0.0
1.0.0
Track the overtime!
github.com/flandrade/harvest-overtime
flandrade/harvest-overtime
harvest-overtime
/
lib
/
report
/
calculator.d.ts
4 lines
(3 loc)
•
237 B
TypeScript
View Raw
1
2
3
4
import
{
Employee
,
Report
,
Timesheet
}
from
"../models"
;
export
declare
function
getTimesheet
(
date
:
string
,
employees
:
Employee
[]
):
Timesheet
;
export
declare
function
getOvertime
(
timesheet
:
Timesheet
[],
regularDayHours
:
number
):
Report
;