UNPKG

pip-services3-expressions-nodex

Version:

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

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