refactoring

This commit is contained in:
Philipp Kühn
2021-05-04 11:03:11 +02:00
parent a96e0c2816
commit 0e1d6d41fe
6 changed files with 18 additions and 22 deletions

View File

@@ -1,13 +1,11 @@
import Vue, { Component } from 'vue'
interface DecorationClass {
value: string
}
interface NodeViewWrapperInterface extends Vue {
export interface NodeViewWrapperInterface extends Vue {
as: string,
decorationClasses: DecorationClass,
onDragStart: Function
decorationClasses: {
value: string,
},
onDragStart: Function,
}
export const NodeViewWrapper: Component = {