UNPKG

au-tax-calc

Version:

Individual Australian tax rate given an income for FY2018-2019

12 lines (9 loc) 273 B
/** * Return the taxed amount given a income amount. */ export function calculateTax(income: number): number; /** * Return the taxed amount given a income amount as a Promise. */ export function asyncCalculateTax(income: number): number; export default calculateTax;