import { BaseModel } from './base'; import { Coord } from './Coord'; import { Size } from './Size'; import { Tag } from './Tag'; export interface SwimLane extends BaseModel { Workflow: string; Tags: Tag[]; Position: number; Coordinates?: Coord; Size?: Size; Name?: string; Key?: string; }