Files
klz-cables.com/.pnpm-store/v10/files/89/3e9cf463731719f714389353a8d547658d2adddbaab30ba52ce08ca553b6e62f726f84d5c49e7a4c07d988f6db073b3807d84984eaa3a8a5e69911b81151c8
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
564 B
Plaintext

import type { PayloadRequest, SanitizedCollectionConfig, SanitizedGlobalConfig, TypedUser } from 'payload';
type Args = {
collectionConfig?: SanitizedCollectionConfig;
globalConfig?: SanitizedGlobalConfig;
id?: number | string;
isEditing: boolean;
req: PayloadRequest;
};
type Result = Promise<{
currentEditor?: TypedUser;
isLocked: boolean;
lastUpdateTime?: number;
}>;
export declare const getIsLocked: ({ id, collectionConfig, globalConfig, isEditing, req, }: Args) => Result;
export {};
//# sourceMappingURL=getIsLocked.d.ts.map