2
0

logic splitted into directives and components

This commit is contained in:
2018-05-23 09:14:52 +02:00
parent 06764e3e7f
commit b18c196610
14 changed files with 148 additions and 22 deletions

View File

@@ -1,9 +1,14 @@
import { Point } from './point.model';
export interface Config {
width: number;
height: number;
start: Point;
end: Point;
drag?: Point;
start: {
x: number;
y: number;
color: string;
};
end: {
x: number;
y: number;
color: string;
};
}