fix error C2664

This commit is contained in:
Asaki Yuki 2026-01-18 20:52:00 +07:00
parent b3b21f3101
commit 6358580eee
3 changed files with 1 additions and 22 deletions

View file

@ -3,12 +3,6 @@ import { Token } from "./bindings/types.js"
export const {
Lexer,
isBlankChar,
isWordChar,
isNumberChar,
}: {
Lexer: (input: string) => Token[]
isBlankChar: (char: string) => boolean
isWordChar: (char: string) => boolean
isNumberChar: (char: string) => boolean
} = bindings("asajs-compiler")