budibase/packages/string-templates/src/helpers/constants.ts

26 lines
361 B
TypeScript
Raw Normal View History

2024-02-21 19:40:50 +01:00
export const HelperFunctionBuiltin = [
"#if",
"#unless",
"#each",
"#with",
"lookup",
"log",
"blockHelperMissing",
"each",
"helperMissing",
"if",
"unless",
"log",
"lookup",
2021-01-21 18:30:51 +01:00
"with",
]
2024-02-21 19:40:50 +01:00
export const HelperFunctionNames = {
OBJECT: "object",
ALL: "all",
LITERAL: "literal",
2021-10-11 15:53:55 +02:00
JS: "js",
}
2024-02-21 19:40:50 +01:00
export const LITERAL_MARKER = "%LITERAL%"