import { NotificationType, RequestType } from 'vscode-languageserver'; import { SchemaAdditions, SchemaDeletions } from './languageservice/services/yamlSchemaService'; import { SchemaConfiguration } from './languageservice/yamlLanguageService'; import { SchemaVersions } from './languageservice/yamlTypes'; export declare type ISchemaAssociations = Record; export interface JSONSchemaDescription { /** * Schema URI */ uri: string; /** * Schema name, from schema store */ name?: string; /** * Schema description, from schema store */ description?: string; } export interface JSONSchemaDescriptionExt extends JSONSchemaDescription { /** * Is schema used for current document */ usedForCurrentFile: boolean; /** * Is schema from schema store */ fromStore: boolean; versions?: SchemaVersions; } export declare namespace SchemaAssociationNotification { const type: NotificationType; } export declare namespace DynamicCustomSchemaRequestRegistration { const type: NotificationType; } export declare namespace VSCodeContentRequestRegistration { const type: NotificationType; } export declare namespace ResultLimitReachedNotification { const type: NotificationType; } export declare namespace VSCodeContentRequest { const type: RequestType; } export declare namespace CustomSchemaContentRequest { const type: RequestType; } export declare namespace CustomSchemaRequest { const type: RequestType; } export declare namespace ColorSymbolRequest { const type: RequestType; } export declare namespace SchemaModificationNotification { const type: RequestType; } export declare namespace SchemaSelectionRequests { const type: NotificationType; const getSchema: RequestType; const getAllSchemas: RequestType; const schemaStoreInitialized: NotificationType; }