projects/angular2-draggable/src/lib/models/resize-event.ts
Properties |
direction |
direction:
|
Type : literal type
|
handle |
handle:
|
Type : any
|
host |
host:
|
Type : any
|
position |
position:
|
Type : literal type
|
size |
size:
|
Type : ISize
|
import { ISize } from './size';
export interface IResizeEvent {
host: any;
handle: any;
size: ISize;
position: {
top: number;
left: number;
};
direction: {
n: boolean;
s: boolean;
w: boolean;
e: boolean;
};
}