harvest-overtime
Version:
Track the overtime!
8 lines (7 loc) • 387 B
TypeScript
import * as Promise from "bluebird";
import { ReportEmployee } from "./models";
export declare const CUR_VERSION = "3.0.0";
export declare const DEF_INPUT = "harvest.csv";
export declare const DEF_OUTPUT = "report.csv";
export declare const DEF_REGULAR_DAY_HOURS = "8";
export default function reporter(input: string, output: string, regularDayHours: number): Promise<ReportEmployee[]>;