@vuedx/typescript-plugin-vue
Version:
TypeScript plugin for Vue
10 lines • 683 B
TypeScript
import type { TSLanguageService, TypeScript } from '../contracts/TypeScript';
import { FilesystemService } from '../services/FilesystemService';
import { TypescriptContextService } from '../services/TypescriptContextService';
export declare class RefactorService implements Pick<TSLanguageService, 'organizeImports'> {
private readonly ts;
private readonly fs;
constructor(ts: TypescriptContextService, fs: FilesystemService);
organizeImports(args: TypeScript.OrganizeImportsArgs, formatOptions: TypeScript.FormatCodeSettings, preferences: TypeScript.UserPreferences | undefined): readonly TypeScript.FileTextChanges[];
}
//# sourceMappingURL=RefactorService.d.ts.map