AST.d.ts 289 Bytes
import { TSESTree, AST_TOKEN_TYPES } from '../ts-estree';
declare namespace AST {
    type TokenType = AST_TOKEN_TYPES;
    type Token = TSESTree.Token;
    type SourceLocation = TSESTree.SourceLocation;
    type Range = TSESTree.Range;
}
export { AST };
//# sourceMappingURL=AST.d.ts.map