mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 02:49:51 +00:00
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import type Sortable from "sortablejs";
|
|
import SortableCore, {
|
|
AutoScroll,
|
|
OnSpill,
|
|
} from "sortablejs/modular/sortable.core.esm";
|
|
|
|
SortableCore.mount(OnSpill);
|
|
SortableCore.mount(new AutoScroll());
|
|
|
|
export default SortableCore as typeof Sortable;
|
|
|
|
export type { Sortable as SortableInstance };
|