Fix lint problems

This commit is contained in:
Gregory Schier
2024-12-03 09:43:16 -08:00
parent 88bcfb9e66
commit 40f0f5387a
12 changed files with 30 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type FnArg = { name: string, value: Val, };
export type Token = { "type": "raw", text: string, } | { "type": "tag", val: Val, } | { "type": "eof" };
export type Tokens = { tokens: Array<Token>, };
export type Val = { "type": "str", text: string, } | { "type": "var", name: string, } | { "type": "bool", value: boolean, } | { "type": "fn", name: string, args: Array<FnArg>, } | { "type": "null" };

View File

@@ -0,0 +1 @@
export * from './bindings/parser';

View File

@@ -0,0 +1,6 @@
{
"name": "@yaakapp-internal/templates",
"private": true,
"version": "1.0.0",
"main": "index.ts"
}