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

17 lines
393 B
Plaintext

export type Options = {
indices?: boolean;
nullsAsUndefineds?: boolean;
booleansAsIntegers?: boolean;
allowEmptyArrays?: boolean;
noAttributesWithArrayNotation?: boolean;
noFilesWithArrayNotation?: boolean;
dotsForObjectNotation?: boolean;
};
export function serialize<T = {}>(
object: T,
options?: Options,
existingFormData?: FormData,
keyPrefix?: string,
): FormData;