UNPKG

@rxdi/ui-kit

Version:

UI Components for building graphql-server website

11 lines (10 loc) 345 B
import Sortable, { SortableOptions as SO } from 'sortablejs'; interface SortableOptions extends SO { multiDrag?: boolean; plugins?: any[]; } export declare class DraggableService { setPlugins(plugins: any[]): void; createSortable(target: HTMLElement, options?: SortableOptions): import("rxjs").Observable<Sortable>; } export {};