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
21 lines
621 B
Plaintext
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 |