UNPKG

vue3-dragula

Version:
20 lines (19 loc) 530 B
import type { Drake } from 'dragula'; import type { Emitter } from 'mitt'; import type { Plugin } from 'vue'; export declare const VueDragula: Plugin; export declare class Bag { name: string; drake: Drake | null; drakeRegistert: boolean; initEvents: boolean; models: any[]; constructor(name: string, drake: any); destroy(): void; } export declare class VueDragulaGlobal { static eventBus: Emitter<any>; static options: Function; static injectOptions: Function; static find: Function; }