Skip to content

@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

PropertyTypeDescriptionDefined in
format?"standard" | "apostrophus" | "vinculum"Specifies the output format for the Roman numeral.src/romanize.ts:12