Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
449 B
TypeScript
14 lines
449 B
TypeScript
import type { OnigurumaAst } from './parser/parse.js';
|
|
type ToOnigurumaAstOptions = {
|
|
flags?: string;
|
|
rules?: {
|
|
captureGroup?: boolean;
|
|
singleline?: boolean;
|
|
};
|
|
};
|
|
/**
|
|
Returns an Oniguruma AST generated from an Oniguruma pattern.
|
|
*/
|
|
declare function toOnigurumaAst(pattern: string, options?: ToOnigurumaAstOptions): OnigurumaAst;
|
|
export { type ToOnigurumaAstOptions, toOnigurumaAst, };
|
|
//# sourceMappingURL=index.d.ts.map
|