UNPKG

@dice-roller/rpg-dice-roller

Version:

An advanced JS based dice roller that can roll various types of dice and modifiers, along with mathematical equations.

11 lines (10 loc) 279 B
export default getModifierFlags; /** * Return the flags for the given list of modifiers * * @param {...Modifier|string} modifiers * * @returns {string} */ declare function getModifierFlags(...modifiers: (Modifier | string)[]): string; import Modifier from "./Modifier.js";