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.

14 lines (13 loc) 286 B
export default NotationError; /** * An error thrown when the notation is invalid */ declare class NotationError extends Error { /** * Create a `NotationError` * * @param {*} notation The invalid notation */ constructor(notation: any); notation: any; }