Updates dockerfile
All checks were successful
Build and Push / build (push) Successful in 55s

This commit is contained in:
2026-02-16 15:09:37 -05:00
parent 8346776f2a
commit d181f77fb2
14943 changed files with 2078509 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
import type * as ts from 'typescript';
import type * as vscode from 'vscode-languageserver-protocol';
import { Range, TextDocument } from 'vscode-languageserver-textdocument';
export declare class SnapshotDocument implements TextDocument {
private document;
private snapshots;
constructor(uri: string, languageId: string, version: number, text: string);
get uri(): string;
get languageId(): string;
get version(): number;
get lineCount(): number;
getText(range?: Range): string;
positionAt(offset: number): import("vscode-languageserver-textdocument").Position;
offsetAt(position: vscode.Position): number;
/**
* Update the document with the given content changes and version.
* If all changes is incremental, calculate the change range and add a new snapshot.
* Otherwise, reset the changes.
*/
update(contentChanges: vscode.TextDocumentContentChangeEvent[], version: number): void;
getSnapshot(): ts.IScriptSnapshot;
private resetChanges;
private clearUnreferencedVersions;
}