mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-20 15:51:23 +02:00
Fix lint problems
This commit is contained in:
9
src-tauri/yaak_templates/bindings/parser.ts
Normal file
9
src-tauri/yaak_templates/bindings/parser.ts
Normal 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" };
|
||||
1
src-tauri/yaak_templates/index.ts
Normal file
1
src-tauri/yaak_templates/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './bindings/parser';
|
||||
6
src-tauri/yaak_templates/package.json
Normal file
6
src-tauri/yaak_templates/package.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "@yaakapp-internal/templates",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"main": "index.ts"
|
||||
}
|
||||
Reference in New Issue
Block a user