freemarker-parser
Version:
Freemarker Parser is a javascript implementation of the Freemarker
45 lines • 1.08 kB
TypeScript
export declare enum NodeTypes {
Program = "Program",
Else = "Else",
Condition = "Condition",
ConditionElse = "ConditionElse",
Include = "Include",
List = "List",
Text = "Text",
Assign = "Assign",
Global = "Global",
Local = "Local",
Macro = "Macro",
MacroCall = "MacroCall",
Interpolation = "Interpolation",
Items = "Items",
Attempt = "Attempt",
Recover = "Recover",
Comment = "Comment",
Switch = "Switch",
SwitchCase = "SwitchCase",
SwitchDefault = "SwitchDefault",
Break = "Break",
Function = "Function",
Return = "Return",
Compress = "Compress",
Import = "Import",
Stop = "Stop",
Setting = "Setting",
Lt = "Lt",
Nt = "Nt",
Rt = "Rt",
T = "T",
Flush = "Flush",
Ftl = "Ftl",
Escape = "Escape",
NoEscape = "NoEscape",
Visit = "visit",
Recurse = "Recurse",
Nested = "Nested",
Fallback = "Fallback",
AutoEsc = "AutoEsc",
NoAutoEsc = "NoAutoEsc",
OutputFormat = "OutputFormat"
}
//# sourceMappingURL=NodeTypes.d.ts.map