import { Stroke } from './stroke.model'; export interface Circle { cx: number; cy: number; r: number; stroke: Stroke; }