import { Stroke } from './stroke.model'; export interface Line { x1: number; y1: number; x2: number; y2: number; stroke: Stroke; }