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,28 @@
import { InlayHint, InlayHintParams, Disposable, RequestHandler } from 'vscode-languageserver-protocol';
import type { Feature, _Languages, ServerRequestHandler } from './server';
/**
* Shape of the inlay hints feature
*
* @since 3.17.0
*/
export interface InlayHintFeatureShape {
inlayHint: {
/**
* Ask the client to refresh all inlay hints.
*/
refresh(): Promise<void>;
/**
* Installs a handler for the inlay hints request.
*
* @param handler The corresponding handler.
*/
on(handler: ServerRequestHandler<InlayHintParams, InlayHint[] | undefined | null, InlayHint[], void>): Disposable;
/**
* Installs a handler for the inlay hint resolve request.
*
* @param handler The corresponding handler.
*/
resolve(handler: RequestHandler<InlayHint, InlayHint, void>): Disposable;
};
}
export declare const InlayHintFeature: Feature<_Languages, InlayHintFeatureShape>;