Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions src/server/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ export interface ApplyChangedToOpenFilesRequestArgs {
*/
openFiles?: ExternalFile[];
/**
* List of open files files that were changes
* List of open files that were changed
*/
changedFiles?: ChangedOpenFile[];
/**
Expand All @@ -1848,7 +1848,7 @@ export interface UpdateOpenRequestArgs {
*/
openFiles?: OpenRequestArgs[];
/**
* List of open files files that were changes
* List of open files that were changed
*/
changedFiles?: FileCodeEdits[];
/**
Expand Down Expand Up @@ -2002,7 +2002,8 @@ export interface EmitResult {
*/
export interface QuickInfoRequest extends FileLocationRequest {
command: CommandTypes.Quickinfo;
arguments: FileLocationRequestArgs;
// FIX: was FileLocationRequestArgs, which silently dropped verbosityLevel
arguments: QuickInfoRequestArgs;
Comment on lines +2005 to +2006
}
Comment on lines 2003 to 2007

export interface QuickInfoRequestArgs extends FileLocationRequestArgs {
Expand Down Expand Up @@ -2595,7 +2596,7 @@ export interface Diagnostic {
reportsDeprecated?: {};

/**
* Any related spans the diagnostic may have, such as other locations relevant to an error, such as declarartion sites
* Any related spans the diagnostic may have, such as other locations relevant to an error, such as declaration sites
*/
relatedInformation?: DiagnosticRelatedInformation[];

Expand Down Expand Up @@ -2679,7 +2680,7 @@ export interface ConfigFileDiagnosticEventBody {
configFile: string;

/**
* An arry of diagnostic information items for the found config file.
* An array of diagnostic information items for the found config file.
*/
diagnostics: DiagnosticWithFileName[];
}
Expand Down Expand Up @@ -3269,7 +3270,7 @@ export const enum ModuleResolutionKind {
Node = "node",
/** @deprecated Renamed to `Node10` */
NodeJs = "node",
/** @deprecated */
/** @deprecated Use `Node16` or `NodeNext` for modern module resolution. */
Node10 = "node10",
Node16 = "node16",
NodeNext = "nodenext",
Expand Down Expand Up @@ -3308,7 +3309,8 @@ export const enum ScriptTarget {
LatestStandard = ES2025,
}

{
/** @internal */
namespace _assertTypesComplete {
type AssertKeysComplete<Source extends { [K in keyof Target]: any; }, Target> = Source;
Comment on lines +3312 to 3314
// eslint-disable-next-line @typescript-eslint/no-unused-vars
type CopiedTypesComplete = [
Expand Down
Loading