Parser 2.0 (Major Delezer) #52

Merged
defunkt merged 35 commits from parser2 into main 2025-12-08 16:35:34 +00:00
Showing only changes of commit b2d298ec6f - Show all commits

View File

@ -245,7 +245,7 @@ const commandShapes: CommandShape[] = [
] as const
let commandSource = () => commandShapes
export const setCommandSource = (do: () => CommandShape[]) => {
export const setCommandSource = (fn: () => CommandShape[]) => {
commandSource = fn
}