UNPKG

portunus

Version:

Converts from decimal numbers to roman numerals and the other way around.

9 lines (8 loc) 294 B
declare type PortunusConvertedValue = string | number; interface PortunusOutput { error?: string; convertedValue?: PortunusConvertedValue; } export declare function portunus(numeral: string): PortunusOutput; export declare function portunus(integer: number): PortunusOutput; export {};