👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2019-12-10 20:31:11 +01:00
parent 5a0d1bf993
commit d74f0d9bbd
2 changed files with 2 additions and 1 deletions

View file

@ -50,6 +50,7 @@ declare module 'jsplumb' {
interface OnConnectionBindInfo {
originalSourceEndpoint: Endpoint;
originalTargetEndpoint: Endpoint;
getParameters(): { index: number };
}
}

View file

@ -502,7 +502,7 @@ export const store = new Vuex.Store({
state.lastSelectedNode = nodeName;
},
setLastSelectedNodeOutputIndex(state, outputIndex: number | null) {
setLastSelectedNodeOutputIndex (state, outputIndex: number | null) {
state.lastSelectedNodeOutputIndex = outputIndex;
},