UNPKG

hubot-command-mapper

Version:
21 lines (20 loc) 339 B
/** * Defines the fraction style. * * @export * @enum {number} */ export declare enum FractionStyle { /** * Fractions are separated by a '.'. */ Dot = 0, /** * Fractions are separated by a ','. */ Comma = 1, /** * Fractions can be separated by both a '.' and a ','. */ Both = 2 }