24 lines
No EOL
1.4 KiB
TypeScript
24 lines
No EOL
1.4 KiB
TypeScript
import * as typescript from 'typescript';
|
|
import * as webpack from 'webpack';
|
|
import { SolutionBuilderWithWatchHost, TSInstance, WatchHost, WebpackError } from './interfaces';
|
|
import * as logger from './logger';
|
|
export declare type Action = () => void;
|
|
export interface ServiceHostWhichMayBeCacheable {
|
|
servicesHost: typescript.LanguageServiceHost;
|
|
clearCache: Action | null;
|
|
}
|
|
/**
|
|
* Create the TypeScript language service
|
|
*/
|
|
export declare function makeServicesHost(scriptRegex: RegExp, log: logger.Logger, loader: webpack.loader.LoaderContext, instance: TSInstance, enableFileCaching: boolean, projectReferences?: ReadonlyArray<typescript.ProjectReference>): ServiceHostWhichMayBeCacheable;
|
|
export declare function updateFileWithText(instance: TSInstance, filePath: string, text: (nFilePath: string) => string): void;
|
|
/**
|
|
* Create the TypeScript Watch host
|
|
*/
|
|
export declare function makeWatchHost(scriptRegex: RegExp, log: logger.Logger, loader: webpack.loader.LoaderContext, instance: TSInstance, projectReferences?: ReadonlyArray<typescript.ProjectReference>): WatchHost;
|
|
/**
|
|
* Create the TypeScript Watch host
|
|
*/
|
|
export declare function makeSolutionBuilderHost(scriptRegex: RegExp, log: logger.Logger, loader: webpack.loader.LoaderContext, instance: TSInstance): SolutionBuilderWithWatchHost;
|
|
export declare function getSolutionErrors(instance: TSInstance, context: string): WebpackError[];
|
|
//# sourceMappingURL=servicesHost.d.ts.map
|