Files
klz-cables.com/.pnpm-store/v10/files/37/136cdeec12b5502779eb9664b1d4d883f4b92764bdc225481b905e2034db5c8aadeec0d62bac4d0a79ffff6b7ef34dc583c33fa706eb019461c705a84cbe9a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

21 lines
621 B
Plaintext

import type { TypeWithVersion } from 'payload';
import React from 'react';
import './index.scss';
type AutosaveCellProps = {
currentlyPublishedVersion?: TypeWithVersion<any>;
latestDraftVersion?: TypeWithVersion<any>;
rowData: {
autosave?: boolean;
id: number | string;
publishedLocale?: string;
updatedAt?: string;
version: {
[key: string]: unknown;
_status: 'draft' | 'published';
updatedAt: string;
};
};
};
export declare const AutosaveCell: React.FC<AutosaveCellProps>;
export {};
//# sourceMappingURL=index.d.ts.map