import { IComponent } from "./Component"; export interface IGraph { id: string; name: string; components: IComponent[]; width?: number; height?: number; }