mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 06:09:30 +08:00
9 lines
No EOL
288 B
Text
9 lines
No EOL
288 B
Text
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 |