chore: seperate into packages

This commit is contained in:
Morten Olsen
2025-12-10 10:26:14 +01:00
parent f9494c88e2
commit d02102977a
40 changed files with 753 additions and 1175 deletions

View File

@@ -6,6 +6,10 @@ class QueryParser {
#stringifier = new Stringifier();
#parser = new QueryParserParser();
public getSerializedGastProductions() {
return this.#parser.getSerializedGastProductions();
}
public parse = (input: string): QueryFilter => {
return this.#parser.parse(input);
};