Revamping to matrix style
This commit is contained in:
13
node_modules/yaml-language-server/lib/esm/languageserver/handlers/schemaSelectionHandlers.d.ts
generated
vendored
Normal file
13
node_modules/yaml-language-server/lib/esm/languageserver/handlers/schemaSelectionHandlers.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Connection } from 'vscode-languageserver/node';
|
||||
import { YAMLSchemaService } from '../../languageservice/services/yamlSchemaService';
|
||||
import { SettingsState } from '../../yamlSettings';
|
||||
import { JSONSchemaDescription, JSONSchemaDescriptionExt } from '../../requestTypes';
|
||||
export declare class JSONSchemaSelection {
|
||||
private readonly schemaService;
|
||||
private readonly yamlSettings?;
|
||||
private readonly connection?;
|
||||
constructor(schemaService: YAMLSchemaService, yamlSettings?: SettingsState, connection?: Connection);
|
||||
getSchemas(docUri: string): Promise<JSONSchemaDescription[]>;
|
||||
private getSchemasForFile;
|
||||
getAllSchemas(docUri: string): Promise<JSONSchemaDescriptionExt[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user