@jupyter-lsp/jupyterlab-lsp
Version:
Language Server Protocol integration for JupyterLab
12 lines (11 loc) • 447 B
TypeScript
import { Token } from '@lumino/coreutils';
/**
* Token provided by the plugin which implements LSP completion.
* As of now no methods are exposed, but it still functions as
* an indicator for whether the LSP completion plugin is available,
* or whether it was disabled by the user (or failed to activate).
*/
export interface ICompletionFeature {
readonly id: string;
}
export declare const ICompletionFeature: Token<ICompletionFeature>;