n8n-nodes-aiscraper
Version:
n8n node to call Parsera API for AI Scraping
14 lines (13 loc) • 390 B
TypeScript
export declare type AttributeDefinition = {
description?: string;
type: string;
};
export declare type TransformedAttributesMap = Record<string, AttributeDefinition>;
export declare type AttributeFieldItem = {
fieldName: string;
fieldType: string;
fieldDescription?: string;
};
export declare type AttributesFieldsParameter = {
fieldValues: AttributeFieldItem[];
};