mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
219 lines
5.4 KiB
TypeScript
219 lines
5.4 KiB
TypeScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// Contains types that can be used to validate and check `99_main_compiler.js`
|
|
|
|
import * as _ts from "../dts/typescript";
|
|
|
|
declare global {
|
|
// deno-lint-ignore no-namespace
|
|
namespace ts {
|
|
var libs: string[];
|
|
var libMap: Map<string, string>;
|
|
|
|
interface SourceFile {
|
|
version?: string;
|
|
}
|
|
|
|
interface Performance {
|
|
enable(): void;
|
|
getDuration(value: string): number;
|
|
}
|
|
|
|
var performance: Performance;
|
|
}
|
|
|
|
// deno-lint-ignore no-namespace
|
|
namespace ts {
|
|
export = _ts;
|
|
}
|
|
|
|
interface Object {
|
|
// deno-lint-ignore no-explicit-any
|
|
__proto__: any;
|
|
}
|
|
|
|
interface DenoCore {
|
|
// deno-lint-ignore no-explicit-any
|
|
opSync<T>(name: string, params: T): any;
|
|
ops(): void;
|
|
print(msg: string, stderr: bool): void;
|
|
registerErrorClass(
|
|
name: string,
|
|
Ctor: typeof Error,
|
|
// deno-lint-ignore no-explicit-any
|
|
...args: any[]
|
|
): void;
|
|
}
|
|
|
|
type LanguageServerRequest =
|
|
| ConfigureRequest
|
|
| FindRenameLocationsRequest
|
|
| GetAsset
|
|
| GetCodeFixes
|
|
| GetCombinedCodeFix
|
|
| GetCompletionDetails
|
|
| GetCompletionsRequest
|
|
| GetDefinitionRequest
|
|
| GetDiagnosticsRequest
|
|
| GetDocumentHighlightsRequest
|
|
| GetEncodedSemanticClassifications
|
|
| GetImplementationRequest
|
|
| GetNavigationTree
|
|
| GetOutliningSpans
|
|
| GetQuickInfoRequest
|
|
| GetReferencesRequest
|
|
| GetSignatureHelpItemsRequest
|
|
| GetSmartSelectionRange
|
|
| GetSupportedCodeFixes
|
|
| PrepareCallHierarchy
|
|
| ProvideCallHierarchyIncomingCalls
|
|
| ProvideCallHierarchyOutgoingCalls;
|
|
|
|
interface BaseLanguageServerRequest {
|
|
id: number;
|
|
method: string;
|
|
}
|
|
|
|
interface ConfigureRequest extends BaseLanguageServerRequest {
|
|
method: "configure";
|
|
// deno-lint-ignore no-explicit-any
|
|
compilerOptions: Record<string, any>;
|
|
}
|
|
|
|
interface FindRenameLocationsRequest extends BaseLanguageServerRequest {
|
|
method: "findRenameLocations";
|
|
specifier: string;
|
|
position: number;
|
|
findInStrings: boolean;
|
|
findInComments: boolean;
|
|
providePrefixAndSuffixTextForRename: boolean;
|
|
}
|
|
|
|
interface GetAsset extends BaseLanguageServerRequest {
|
|
method: "getAsset";
|
|
specifier: string;
|
|
}
|
|
|
|
interface GetCodeFixes extends BaseLanguageServerRequest {
|
|
method: "getCodeFixes";
|
|
specifier: string;
|
|
startPosition: number;
|
|
endPosition: number;
|
|
errorCodes: string[];
|
|
}
|
|
|
|
interface GetCombinedCodeFix extends BaseLanguageServerRequest {
|
|
method: "getCombinedCodeFix";
|
|
specifier: string;
|
|
// deno-lint-ignore ban-types
|
|
fixId: {};
|
|
}
|
|
|
|
interface GetCompletionDetails extends BaseLanguageServerRequest {
|
|
method: "getCompletionDetails";
|
|
args: {
|
|
specifier: string;
|
|
position: number;
|
|
name: string;
|
|
source?: string;
|
|
data?: unknown;
|
|
};
|
|
}
|
|
|
|
interface GetCompletionsRequest extends BaseLanguageServerRequest {
|
|
method: "getCompletions";
|
|
specifier: string;
|
|
position: number;
|
|
preferences: ts.GetCompletionsAtPositionOptions;
|
|
}
|
|
|
|
interface GetDiagnosticsRequest extends BaseLanguageServerRequest {
|
|
method: "getDiagnostics";
|
|
specifiers: string[];
|
|
}
|
|
|
|
interface GetDefinitionRequest extends BaseLanguageServerRequest {
|
|
method: "getDefinition";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface GetDocumentHighlightsRequest extends BaseLanguageServerRequest {
|
|
method: "getDocumentHighlights";
|
|
specifier: string;
|
|
position: number;
|
|
filesToSearch: string[];
|
|
}
|
|
|
|
interface GetEncodedSemanticClassifications
|
|
extends BaseLanguageServerRequest {
|
|
method: "getEncodedSemanticClassifications";
|
|
specifier: string;
|
|
span: ts.TextSpan;
|
|
}
|
|
|
|
interface GetImplementationRequest extends BaseLanguageServerRequest {
|
|
method: "getImplementation";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface GetNavigationTree extends BaseLanguageServerRequest {
|
|
method: "getNavigationTree";
|
|
specifier: string;
|
|
}
|
|
|
|
interface GetOutliningSpans extends BaseLanguageServerRequest {
|
|
method: "getOutliningSpans";
|
|
specifier: string;
|
|
}
|
|
|
|
interface GetQuickInfoRequest extends BaseLanguageServerRequest {
|
|
method: "getQuickInfo";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface GetReferencesRequest extends BaseLanguageServerRequest {
|
|
method: "getReferences";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface GetSignatureHelpItemsRequest extends BaseLanguageServerRequest {
|
|
method: "getSignatureHelpItems";
|
|
specifier: string;
|
|
position: number;
|
|
options: ts.SignatureHelpItemsOptions;
|
|
}
|
|
|
|
interface GetSmartSelectionRange extends BaseLanguageServerRequest {
|
|
method: "getSmartSelectionRange";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface GetSupportedCodeFixes extends BaseLanguageServerRequest {
|
|
method: "getSupportedCodeFixes";
|
|
}
|
|
|
|
interface PrepareCallHierarchy extends BaseLanguageServerRequest {
|
|
method: "prepareCallHierarchy";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface ProvideCallHierarchyIncomingCalls
|
|
extends BaseLanguageServerRequest {
|
|
method: "provideCallHierarchyIncomingCalls";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
|
|
interface ProvideCallHierarchyOutgoingCalls
|
|
extends BaseLanguageServerRequest {
|
|
method: "provideCallHierarchyOutgoingCalls";
|
|
specifier: string;
|
|
position: number;
|
|
}
|
|
}
|