UNPKG

jql-parser

Version:
10 lines (9 loc) 332 B
import { Expression } from '../language/Expression'; import { Token } from './Token'; export declare class Parenthesis extends Token { nestedExpression?: Expression; private static startsWithParenthesis; private static endOfParenthesis; protected matcherFn(str: string): number; parse(input: string): boolean; }