/** * One source citation row attached to a product. */ export type ProductSourceRow = { /** * One of SOURCE_TYPES (e.g. 'ahri') */ source_type: string; source_url: string; certification_number?: (string | null); pdf_release_date?: (string | null); fetched_at: string; }; //# sourceMappingURL=ProductSourceRow.d.ts.map