mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-07-04 10:30:50 +00:00
37 lines
971 B
TypeScript
37 lines
971 B
TypeScript
import { NotificationType, RequestType } from 'vscode-languageserver';
|
|
|
|
export namespace SchemaAssociationNotification {
|
|
export const type: NotificationType<{}, {}> = new NotificationType(
|
|
'json/schemaAssociations'
|
|
);
|
|
}
|
|
|
|
export namespace DynamicCustomSchemaRequestRegistration {
|
|
export const type: NotificationType<{}, {}> = new NotificationType(
|
|
'yaml/registerCustomSchemaRequest'
|
|
);
|
|
}
|
|
|
|
export namespace VSCodeContentRequest {
|
|
export const type: RequestType<{}, {}, {}, {}> = new RequestType(
|
|
'vscode/content'
|
|
);
|
|
}
|
|
|
|
export namespace CustomSchemaContentRequest {
|
|
export const type: RequestType<{}, {}, {}, {}> = new RequestType(
|
|
'custom/schema/content'
|
|
);
|
|
}
|
|
|
|
export namespace CustomSchemaRequest {
|
|
export const type: RequestType<{}, {}, {}, {}> = new RequestType(
|
|
'custom/schema/request'
|
|
);
|
|
}
|
|
|
|
export namespace ColorSymbolRequest {
|
|
export const type: RequestType<{}, {}, {}, {}> = new RequestType(
|
|
'json/colorSymbols'
|
|
);
|
|
}
|