2
0

added binging between directive and parent component

This commit is contained in:
2018-05-10 21:35:28 +02:00
parent 51e7822b04
commit e4352d9579
5 changed files with 27 additions and 14 deletions

View File

@@ -1,8 +1,8 @@
import { Point } from './point.model';
export interface Config {
width: Number;
height: Number;
width: number;
height: number;
start: Point;
end: Point;
}