@typescript-eslint/types
Version:
Types for the TypeScript-ESTree AST spec
17 lines • 458 B
TypeScript
declare enum AST_TOKEN_TYPES {
Boolean = "Boolean",
Identifier = "Identifier",
JSXIdentifier = "JSXIdentifier",
JSXText = "JSXText",
Keyword = "Keyword",
Null = "Null",
Numeric = "Numeric",
Punctuator = "Punctuator",
RegularExpression = "RegularExpression",
String = "String",
Template = "Template",
Block = "Block",
Line = "Line"
}
export { AST_TOKEN_TYPES };
//# sourceMappingURL=ast-token-types.d.ts.map