Files
memecoin-botV2/.pnpm-store/v10/files/eb/52d3488a34b15cf360d22af1d5e37446881bf1d97215040bdd123119faaf5b26b66c62b13b0422893074b30f45e20059aa10f51b0ecdf026ab5d38272d84b2

10 lines
292 B
Plaintext

import * as ts from 'typescript';
import type { TSESTree } from './ts-estree';
/**
* Convert all comments for the given AST.
* @param ast the AST object
* @returns the converted ESTreeComment
* @private
*/
export declare function convertComments(ast: ts.SourceFile): TSESTree.Comment[];