10 lines
292 B
Plaintext
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[];
|