ngx-moveable
Version:
An Angular Component that create Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable, Snappable.
11 lines (10 loc) • 443 B
TypeScript
import Moveable, { MoveableInterface, MoveableProperties } from 'moveable';
import { MethodInterface } from 'framework-utils';
import { NgxMoveableEvents } from './types';
export declare class NgxMoveableInterface {
protected moveable: Moveable;
}
export interface NgxMoveableInterface extends NgxMoveableEvents, MoveableProperties, MethodInterface<MoveableInterface, Moveable, NgxMoveableInterface, {
dragStart: 'ngDragStart';
}> {
}