UNPKG

vue-konva

Version:

Vue binding to canvas element via Konva framework

10 lines (9 loc) 539 B
import type { VNode, ComponentInternalInstance } from 'vue'; import type Konva from 'konva'; import updatePicture from './updatePicture'; import applyNodeProps from './applyNodeProps'; export declare const componentPrefix = "v"; export declare function findParentKonva(instance: ComponentInternalInstance): ComponentInternalInstance | null; export declare function findKonvaNode(instance: VNode): Konva.Node | null; export declare function checkOrder(subTree: VNode, konvaNode: Konva.Node): void; export { updatePicture, applyNodeProps };