UNPKG

@randsum/notation

Version:

Dice notation parser and types for the @randsum ecosystem

10 lines (8 loc) 255 B
import type { NotationSchema } from '../schema' import { createArithmeticNotation } from './arithmetic' export const minusSchema: NotationSchema<number> = createArithmeticNotation({ name: 'minus', priority: 91, operator: '-', verb: 'Subtract' })