@surface/path-matcher
Version:
Provides path matching capabilities.
11 lines (10 loc) • 456 B
JavaScript
/* eslint-disable @typescript-eslint/indent */
var ContextType;
(function (ContextType) {
ContextType[ContextType["Braces"] = 0] = "Braces";
ContextType[ContextType["Class"] = 1] = "Class";
ContextType[ContextType["Literal"] = 2] = "Literal";
ContextType[ContextType["Negation"] = 3] = "Negation";
ContextType[ContextType["PatternList"] = 4] = "PatternList";
})(ContextType || (ContextType = {}));
export default ContextType;