@technobuddha > library > Math > Roman Numerals
Type Alias: RomanOptions
ts
type RomanOptions = {
format?: "standard" | "apostrophus" | "vinculum";
};Defined in: romanize.ts:10
Options for converting numbers to Roman numerals.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
format? | "standard" | "apostrophus" | "vinculum" | Specifies the output format for the Roman numeral. | src/romanize.ts:12 |