hubot-command-mapper
Version:
Helps with mapping tools and commands to Hubot.
21 lines (20 loc) • 339 B
text/typescript
/**
* 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
}