/** * 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 {Second} from "./Second"; import {SiDerivedUnit} from "./SiDerivedUnit"; export class Hectosecond extends SiDerivedUnit { public symbol = "hs"; public baseUnit = new Second(this.value * Math.pow(10, 2)); }