This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/src/compilers/Bindings.ts
2026-01-18 20:52:00 +07:00

8 lines
171 B
TypeScript

import bindings from "bindings"
import { Token } from "./bindings/types.js"
export const {
Lexer,
}: {
Lexer: (input: string) => Token[]
} = bindings("asajs-compiler")