Files
memecoin-botV2/.pnpm-store/v10/files/e5/08f5fd99b0f5843b7cec067160e50eab0b2d24c0c5b57a35eb9a76d5a8fba4b2fbb01c201d8034f666e8ee7b4898bb9e21acae3dbc994316450b0366cf27c9

9 lines
265 B
Plaintext

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 };