Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/WooCommerce/ProductInterface.ts
2025-09-08 04:48:28 +08:00

26 lines
370 B
TypeScript
Executable File

import type { 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;
}