mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-27 20:01:10 +01:00
Template Tag Function Editor (#67)

This commit is contained in:
4
src-web/gen/FnArg.ts
Normal file
4
src-web/gen/FnArg.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Val } from "./Val";
|
||||
|
||||
export type FnArg = { name: string, value: Val, };
|
||||
4
src-web/gen/Token.ts
Normal file
4
src-web/gen/Token.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Val } from "./Val";
|
||||
|
||||
export type Token = { "type": "raw", text: string, } | { "type": "tag", val: Val, } | { "type": "eof" };
|
||||
4
src-web/gen/Tokens.ts
Normal file
4
src-web/gen/Tokens.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Token } from "./Token";
|
||||
|
||||
export type Tokens = { tokens: Array<Token>, };
|
||||
4
src-web/gen/Val.ts
Normal file
4
src-web/gen/Val.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { FnArg } from "./FnArg";
|
||||
|
||||
export type Val = { "type": "str", text: string, } | { "type": "var", name: string, } | { "type": "fn", name: string, args: Array<FnArg>, } | { "type": "null" };
|
||||
Reference in New Issue
Block a user