Skip to content

Commit

Permalink
fix(types): export Edges and BoundingRectangle types
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Lewis committed Jun 13, 2016
1 parent f9a2345 commit fe49114
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resizable.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import {
import {Subject} from 'rxjs';
import {Observable} from 'rxjs/Observable';

interface Edges {
export interface Edges {
top?: boolean;
bottom?: boolean;
left?: boolean;
right?: boolean;
}

interface BoundingRectangle {
export interface BoundingRectangle {
top: number;
bottom: number;
left: number;
Expand Down

0 comments on commit fe49114

Please sign in to comment.