sprotty-vscode-protocol
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -34,1 +34,7 @@ /******************************************************************************** | ||
} | ||
export declare namespace DeleteWithWorkspaceEditAction { | ||
const KIND = "deleteWithWorkspaceEdit"; | ||
function is(action: Action): action is DeleteWithWorkspaceEditAction; | ||
} | ||
export interface DeleteWithWorkspaceEditAction extends Action { | ||
} |
@@ -34,2 +34,10 @@ "use strict"; | ||
})(WorkspaceEditAction = exports.WorkspaceEditAction || (exports.WorkspaceEditAction = {})); | ||
var DeleteWithWorkspaceEditAction; | ||
(function (DeleteWithWorkspaceEditAction) { | ||
DeleteWithWorkspaceEditAction.KIND = 'deleteWithWorkspaceEdit'; | ||
function is(action) { | ||
return action.kind === DeleteWithWorkspaceEditAction.KIND; | ||
} | ||
DeleteWithWorkspaceEditAction.is = is; | ||
})(DeleteWithWorkspaceEditAction = exports.DeleteWithWorkspaceEditAction || (exports.DeleteWithWorkspaceEditAction = {})); | ||
//# sourceMappingURL=editing.js.map |
{ | ||
"name": "sprotty-vscode-protocol", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"displayName": "Sprotty VSCode Integration - Protocol between webview and extension", | ||
@@ -53,3 +53,3 @@ "description": "Glue code to integrate Sprotty diagrams in VSCode extensions (protocol part)", | ||
"prepare": "yarn run clean && yarn run build", | ||
"clean": "rimraf lib sprotty-vscode*.tgz", | ||
"clean": "rimraf lib", | ||
"build": "tsc", | ||
@@ -59,3 +59,3 @@ "watch": "tsc -w", | ||
}, | ||
"gitHead": "1fe9f3272ed14e182b67deabef1d1fc9b6e73dca" | ||
"gitHead": "99132778720736ee312df31a76df741ab0c4c082" | ||
} |
@@ -45,1 +45,13 @@ /******************************************************************************** | ||
} | ||
export namespace DeleteWithWorkspaceEditAction { | ||
export const KIND = 'deleteWithWorkspaceEdit'; | ||
export function is(action: Action): action is DeleteWithWorkspaceEditAction { | ||
return action.kind === KIND; | ||
} | ||
} | ||
export interface DeleteWithWorkspaceEditAction extends Action { | ||
} | ||
Sorry, the diff of this file is not supported yet
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
36958
396