UNPKG

ng-number-to-text

Version:

Set of pipes for angular2+ projects to convert numbers to words as ordinal numbers

18 lines (17 loc) 506 B
import { PipeTransform } from '@angular/core'; export declare class NumberToTextArPipe implements PipeTransform { first: string; transform(value: any): string; private checkNumber; private checkZero; private checkSingle; private checkTenth; private checkTwentieth; private checkThirtieth; private checkFortieth; private checkFiftieth; private checkSixtieth; private checkSeventieth; private checkEightieth; private checkNinetieth; }