48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-namespace */
|
|
export namespace commands {
|
|
export const evaluateXPath = "basexTools.evaluateXPath";
|
|
export const executeXQuery = "basexTools.executeXQuery";
|
|
export const formatAsXml = "basexTools.formatAsXml";
|
|
export const xmlToText = "basexTools.xmlToText";
|
|
export const textToXml = "basexTools.textToXml";
|
|
export const getCurrentXPath = "basexTools.getCurrentXPath";
|
|
export const minifyXml = "basexTools.minifyXml";
|
|
export const getAST = "basexTools.getAST";
|
|
}
|
|
|
|
export namespace contextKeys {
|
|
export const xmlTreeViewEnabled = "xmlTreeViewEnabled";
|
|
}
|
|
|
|
export namespace diagnosticCollections {
|
|
export const xquery = "XQueryDiagnostics";
|
|
}
|
|
|
|
export namespace languageIds {
|
|
export const xml = "xml";
|
|
export const xsd = "xsd";
|
|
export const xquery = "xquery";
|
|
}
|
|
|
|
export namespace nativeCommands {
|
|
export const revealLine = "revealLine";
|
|
}
|
|
|
|
export namespace stateKeys {
|
|
export const xpathQueryHistory = "xpathQueryHistory";
|
|
export const xPathQueryLast = "xPathQueryLast";
|
|
}
|
|
|
|
export namespace uriSchemes {
|
|
export const file = "file";
|
|
export const untitled = "untitled";
|
|
}
|
|
|
|
export namespace views {
|
|
export const xmlTreeView = "xmlTreeView";
|
|
}
|
|
|
|
export namespace xmlFormatterImplementations {
|
|
export const classic = "classic";
|
|
export const v2 = "v2";
|
|
}
|