mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-21 17:09:09 +01:00
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
export * from './bindings/parser';
|
|
import { Tokens } from './bindings/parser';
|
|
import { parse_template } from './pkg';
|
|
|
|
export function parseTemplate(template: string) {
|
|
return parse_template(template) as Tokens;
|
|
}
|