UNPKG

@typescript-eslint/utils

Version:

Utilities for working with TypeScript + ESLint together

9 lines (8 loc) 265 B
import type { AST_TOKEN_TYPES, TSESTree } from '../ts-estree'; declare namespace AST { type TokenType = AST_TOKEN_TYPES; type Token = TSESTree.Token; type SourceLocation = TSESTree.SourceLocation; type Range = TSESTree.Range; } export type { AST };