DefinitelyTyped/types/js-roman-numerals/index.d.ts
2019-11-05 13:13:53 -08:00

14 lines
404 B
TypeScript

// Type definitions for js-roman-numerals 1.1
// Project: https://github.com/bcotrim/roman-numerals
// Definitions by: Ricardo Mello <https://github.com/ricardo-mello>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.5
declare class RomanNumeral {
constructor(value: number | string);
toInt(): number;
toString(): string;
}
export = RomanNumeral;