UNPKG

372 BTypeScriptView Raw
1import { DeclarationOptions } from './module.declarator';
2import { PathSolver } from './path.solver';
3export declare class ModuleImportDeclarator {
4 private solver;
5 constructor(solver?: PathSolver);
6 declare(content: string, options: DeclarationOptions): string;
7 private findImportsEndpoint;
8 private buildLineToInsert;
9 private computeRelativePath;
10}