UNPKG

315 BTypeScriptView Raw
1import { DrakeWithModels } from "./DrakeWithModels";
2import { DragulaOptions } from "./DragulaOptions";
3export declare class Group {
4 name: string;
5 drake: DrakeWithModels;
6 options: DragulaOptions;
7 initEvents: boolean;
8 constructor(name: string, drake: DrakeWithModels, options: DragulaOptions);
9}