mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
19 lines
1011 B
TypeScript
19 lines
1011 B
TypeScript
|
import * as ts from 'typescript';
|
||
|
import { IncrementalCheckerInterface, IncrementalCheckerParams } from './IncrementalCheckerInterface';
|
||
|
import { CancellationToken } from './CancellationToken';
|
||
|
import { CompilerHost } from './CompilerHost';
|
||
|
export declare class ApiIncrementalChecker implements IncrementalCheckerInterface {
|
||
|
protected readonly tsIncrementalCompiler: CompilerHost;
|
||
|
protected readonly typescript: typeof ts;
|
||
|
private currentEsLintErrors;
|
||
|
private lastUpdatedFiles;
|
||
|
private lastRemovedFiles;
|
||
|
private readonly eslinter;
|
||
|
constructor({ typescript, programConfigFile, compilerOptions, eslinter, vue, checkSyntacticErrors, resolveModuleName, resolveTypeReferenceDirective }: IncrementalCheckerParams);
|
||
|
hasEsLinter(): boolean;
|
||
|
isFileExcluded(filePath: string): boolean;
|
||
|
nextIteration(): void;
|
||
|
getTypeScriptIssues(): Promise<import("./issue/Issue").Issue[]>;
|
||
|
getEsLintIssues(cancellationToken: CancellationToken): Promise<import("./issue/Issue").Issue[]>;
|
||
|
}
|