1 | import { ConfigurationItem } from 'vscode-languageserver-protocol';
|
2 | import type { Feature, _RemoteWorkspace } from './server';
|
3 | export interface Configuration {
|
4 | getConfiguration(): Promise<any>;
|
5 | getConfiguration(section: string): Promise<any>;
|
6 | getConfiguration(item: ConfigurationItem): Promise<any>;
|
7 | getConfiguration(items: ConfigurationItem[]): Promise<any[]>;
|
8 | }
|
9 | export declare const ConfigurationFeature: Feature<_RemoteWorkspace, Configuration>;
|