vue3-dragula
Version:
Vue3 wrapper library for dragula
20 lines (19 loc) • 530 B
TypeScript
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;
}