12 lines
340 B
TypeScript
12 lines
340 B
TypeScript
/**
|
|
* Product field options are defined inline in `product-field.data.ts`
|
|
* (per category) and created by `ProductsFieldsSeeder`.
|
|
* Kept for backward compatibility with `FieldOptionSeeder`.
|
|
*/
|
|
export interface AttributeValueData {
|
|
value: string;
|
|
attributeName: string;
|
|
}
|
|
|
|
export const attributeValueData: AttributeValueData[] = [];
|