crawler / src /productData.ts
GitHub Actions Bot
🚀 Auto-deploy: 5d74de4ffce97f8bbd420c866de5e20ac52a3bad
ec4bf22
Raw
History Blame Contribute Delete
246 Bytes
export interface ProductData {
url: string;
crawledAt: string;
brand?: string | null;
price?: string | null;
rating?: string | null;
reviews?: string | null;
title?: string | null;
imageUrl?: string | null;
[key: string]: any;
}