mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-29 21:51:59 +02: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;
|
|
}
|