import Numbers from './Numbers'; /** * A group three numbers, this component will deal with three zero numbers */ export default abstract class Zerofill extends Numbers { /** * The name come after the value of {@link Numbers} */ protected abstract get unitName(): string; read(firstNumber?: boolean): string; }