1 | import { DeclarationOptions } from './module.declarator';
|
2 | import { PathSolver } from './path.solver';
|
3 | export 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 | }
|