Premier commit déjà bien avancé

This commit is contained in:
2025-11-10 18:33:24 +01:00
commit db4f0508cb
652 changed files with 440521 additions and 0 deletions

14
frontend/node_modules/@lezer/html/dist/index.d.cts generated vendored Normal file
View File

@ -0,0 +1,14 @@
import {LRParser} from "@lezer/lr"
import {Input, PartialParse, Parser, TreeCursor, ParseWrapper} from "@lezer/common"
export const parser: LRParser
export function configureNesting(tags?: readonly {
tag: string,
attrs?: (attrs: {[attr: string]: string}) => boolean,
parser: Parser
}[], attributes?: {
name: string,
tagName?: string,
parser: Parser
}[]): ParseWrapper