Files
klz-cables.com/.pnpm-store/v10/files/a4/611e6f860a2843288f0d893ed2ffeb343158cbfb3fe385c4a8ff6c16512aed3c6d3f07199fa2a0497888dc2896cf22169a4af7b35e977d3bbd6a98a3ff263b
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

16 lines
496 B
Plaintext

import type { PayloadRequest, TypedUser } from 'payload';
type Args = {
collectionSlug?: string;
globalSlug?: string;
id?: number | string;
req: PayloadRequest;
updateLastEdited?: boolean;
};
type Result = {
isLocked: boolean;
lastEditedAt: string;
user: TypedUser;
};
export declare const handleFormStateLocking: ({ id, collectionSlug, globalSlug, req, updateLastEdited, }: Args) => Promise<Result>;
export {};
//# sourceMappingURL=handleFormStateLocking.d.ts.map