UNPKG
dicelang
Version:
latest (0.0.2)
0.0.2
0.0.1
0.0.0
JavaScript interpreter of the Roll20 dice language
github.com/IrisAmp/dicelang
IrisAmp/dicelang
dicelang
/
dist
/
Parser
/
Parser.d.ts
4 lines
(3 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
import
{
IExpression
}
from
'../Common/IExpression'
;
export
declare
function
parenthesize
(
input
:
string
,
openParenChar
?:
string
,
closeParenChar
?:
string
):
IExpression
;
export
declare
function
splitOperators
(
input
:
string
,
operatorMatcher
?:
RegExp
):
IExpression
;