File

projects/angular2-draggable/src/lib/models/resize-event.ts

Index

Properties

Properties

direction
direction: literal type
Type : literal type
handle
handle: any
Type : any
host
host: any
Type : any
position
position: literal type
Type : literal type
size
size: ISize
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;
  };
}

results matching ""

    No results matching ""