chore(core): add missing generic for output node

This commit is contained in:
braks
2024-02-15 17:46:21 +01:00
committed by Braks
parent 49a9f4aeee
commit ee8748e936
@@ -4,7 +4,7 @@ import Handle from '../Handle/Handle.vue'
import type { NodeProps } from '../../types'
import { Position } from '../../types'
const OutputNode: FunctionalComponent<NodeProps> = function ({
const OutputNode: FunctionalComponent<NodeProps<{ label: any }>> = function ({
targetPosition = Position.Top,
label: _label,
connectable = true,