ng2-dragula
Version:
Simple drag and drop with dragula
10 lines (9 loc) • 315 B
TypeScript
import { DrakeWithModels } from "./DrakeWithModels";
import { DragulaOptions } from "./DragulaOptions";
export declare class Group {
name: string;
drake: DrakeWithModels;
options: DragulaOptions;
initEvents: boolean;
constructor(name: string, drake: DrakeWithModels, options: DragulaOptions);
}