UNPKG

dice-typescript

Version:

A TypeScript library for parsing dice rolling expressions, most commonly used in tabletop RPGs.

6 lines (5 loc) 192 B
import { ExpressionNode } from './expression-node.class'; import { NodeType } from './node-type.enum'; export declare class Factory { static create(type: NodeType): ExpressionNode; }