mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
import { CstParser } from '../../lib/chevrotain.min.mjs';
|
|
|
|
/** @type {any} */
|
|
const AnyParser = CstParser;
|
|
|
|
/**
|
|
* @typedef {import('./chevrotain').CstParser} CstParserType
|
|
* @typedef {new (...args: any[]) => CstParserType} CstParserConstructor
|
|
* @type {CstParserConstructor}
|
|
*/
|
|
const Parser = AnyParser;
|
|
|
|
export { Parser as CstParser };
|