Files
klz-cables.com/.pnpm-store/v10/files/e2/8456ff0bb299255439d604588817b1a8f2d387e8d0c7cfb3b934c41b2f908ec70c7c13c8e61f612889f59574a30245811c6234cd96ac2eecc7430b9005f60e
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

12 lines
550 B
Plaintext

import type { FieldHook } from '../../config/types.js';
import type { SlugFieldArgs } from './index.js';
type HookArgs = {
slugFieldName: NonNullable<SlugFieldArgs['name']>;
} & Pick<SlugFieldArgs, 'slugify'> & Required<Pick<SlugFieldArgs, 'useAsSlug'>>;
/**
* This is a `BeforeChange` field hook used to auto-generate the `slug` field.
* See `slugField` for more details.
*/
export declare const generateSlug: ({ slugFieldName, slugify: customSlugify, useAsSlug }: HookArgs) => FieldHook;
export {};
//# sourceMappingURL=generateSlug.d.ts.map