/** * This file is part of Measurement Toolkit * * (c) Bas Peeters * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import {UsDerivedUnit} from "./UsDerivedUnit"; import {Yard} from "./Yard"; export class Mile extends UsDerivedUnit { public symbol = "mi"; public baseUnit = new Yard(this.value * 1760); }