import { ShapeTemplateSettings } from "./ShapeTemplateSettings"; import { ShapeTemplateType } from "../enums/Enums"; import { FabricShapeData } from "../../../processshape"; export interface ShapeTemplateFreeformSettings extends ShapeTemplateSettings { type: ShapeTemplateType.FreeformShape; nodes: FabricShapeData[]; }