projects/angular-resizable-element/src/lib/interfaces/edges.interface.ts
The edges that the resize event were triggered on
Properties |
[key: string]:
|
bottom |
bottom:
|
Type : boolean | number
|
Optional |
left |
left:
|
Type : boolean | number
|
Optional |
right |
right:
|
Type : boolean | number
|
Optional |
top |
top:
|
Type : boolean | number
|
Optional |
export interface Edges {
top?: boolean | number;
bottom?: boolean | number;
left?: boolean | number;
right?: boolean | number;
[key: string]: boolean | number | undefined;
}