mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
14 lines
404 B
TypeScript
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;
|