Files
docs/node_modules/@shikijs/engine-javascript/dist/engine-raw.d.ts
yinxue 9e1b8bdc9d
Some checks failed
CI Pipeline / build (push) Failing after 3m23s
first-commit
2025-08-27 14:05:33 +08:00

13 lines
332 B
TypeScript

import { RegexEngine } from '@shikijs/types';
/**
* Raw JavaScript regex engine that only supports precompiled grammars.
*
* This further simplifies the engine by excluding the regex compilation step.
*
* Zero dependencies.
*/
declare function createJavaScriptRawEngine(): RegexEngine;
export { createJavaScriptRawEngine };