UNPKG

pip-services4-expressions-node

Version:

Tokenizers, parsers and expression calculators in Node.js / ES2017

15 lines 253 B
/** @module mustache */ /** * Define types of mustache tokens. */ export enum MustacheTokenType { Unknown = 0, Value, Variable, EscapedVariable, Section, InvertedSection, SectionEnd, Partial, Comment }