saldo
Version:
Portuguese salary calculator library
11 lines • 399 B
TypeScript
export declare class LunchAllowance {
dailyValue: number;
mode: "cupon" | "salary" | null;
daysCount: number;
constructor(dailyValue: number, mode: "cupon" | "salary" | null, daysCount: number);
get monthlyValue(): number;
get taxableMonthlyValue(): number;
get taxFreeMonthlyValue(): number;
get yearlyValue(): number;
}
//# sourceMappingURL=lunch-allowance.d.ts.map