Files
memecoin-botV2/.pnpm-store/v10/files/12/11479b835f703dc96cb672d74dad3c8fbe0e254528a2487f408abc78e70d5df624d50607f8de1d888f542a3e9e9f1c4fcb7b6b6960c2b9c4080f0888fff901

9 lines
362 B
Plaintext

import type { SourceFile } from 'typescript';
import type { ASTMaps } from './convert';
import type { ParseSettings } from './parseSettings';
import type { TSESTree } from './ts-estree';
export declare function astConverter(ast: SourceFile, parseSettings: ParseSettings, shouldPreserveNodeMaps: boolean): {
astMaps: ASTMaps;
estree: TSESTree.Program;
};