ts.d.ts 757 B

123456789
  1. import type * as ts from 'typescript/lib/tsserverlibrary';
  2. import type { VueCompilerOptions } from '../types';
  3. export type ParsedCommandLine = ts.ParsedCommandLine & {
  4. vueOptions: Partial<VueCompilerOptions>;
  5. };
  6. export declare function createParsedCommandLineByJson(ts: typeof import('typescript/lib/tsserverlibrary'), parseConfigHost: ts.ParseConfigHost, rootDir: string, json: any, configFileName?: string): ParsedCommandLine;
  7. export declare function createParsedCommandLine(ts: typeof import('typescript/lib/tsserverlibrary'), parseConfigHost: ts.ParseConfigHost, tsConfigPath: string): ParsedCommandLine;
  8. export declare function resolveVueCompilerOptions(vueOptions: Partial<VueCompilerOptions>): VueCompilerOptions;
  9. //# sourceMappingURL=ts.d.ts.map