n8n/packages/nodes-base/nodes/WooCommerce/ProductInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

26 lines
365 B
TypeScript

import { IDataObject } from 'n8n-workflow';
export interface IDimension {
height?: string;
length?: string;
width?: string;
}
export interface IImage {
alt?: string;
name?: string;
src?: string;
}
export interface IProduct {
[index: string]:
| string
| number
| string[]
| number[]
| IDataObject
| IDataObject[]
| IImage[]
| IDimension;
}