import { IkasImage } from "../../image"; import { IkasProductAttribute } from "../attribute"; import { IkasProductAttributeOption } from "../attribute/option"; export type IkasProductAttributeValue = { imageIds: string[] | null; productAttributeId: string | null; productAttributeOptionId: string | null; value: string | null; images?: IkasImage[]; productAttribute?: IkasProductAttribute | null; productAttributeOption?: IkasProductAttributeOption | null; }; export type IkasAttributeTableCellValue = { colId: string; rowId: string; value: string | null; }; export type IkasProductAttributeMap = { attribute: IkasProductAttribute; values: IkasProductAttributeValue[]; };