UNPKG

@shopify/draggable

Version:

The JavaScript Drag & Drop library your grandparents warned you about.

19 lines (13 loc) 262 B
'use strict'; class AbstractPlugin { constructor(draggable) { this.draggable = draggable; } attach() { throw new Error('Not Implemented'); } detach() { throw new Error('Not Implemented'); } } exports.AbstractPlugin = AbstractPlugin;