interface DesignElement {
    type: "image" | "text";
    cost: number;
    details: string;
}

Properties

Properties

type: "image" | "text"
cost: number
details: string