lsp-types-max 26.6.8

Types for interaction with a language server, using VSCode's Language Server Protocol
Documentation
1
2
3
4
5
6
7
use crate::Uri;

pub type BaseAny = serde_json::Value;
pub type BaseObject = serde_json::Map<String, serde_json::Value>;
pub type BaseArray = Vec<serde_json::Value>;
pub type URI = Uri;
pub type DocumentUri = Uri;