Files
klz-cables.com/.pnpm-store/v10/files/67/e76b9348902621544e67ab197e5ac4d53b9910e3cf84c4d6b41bdafb2b8079dbc612acdd260fb45f4774bae94eb5b631c7e429e6482c134e7756102fc06e9d
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
377 B
Plaintext

import type {
LocalizedOptions,
FirstWeekContainsDateOptions,
WeekOptions,
} from "../../types.js";
export interface ParseFlags {
timestampIsSet?: boolean;
era?: number;
}
export type ParserOptions = Required<
LocalizedOptions<"options"> & FirstWeekContainsDateOptions & WeekOptions
>;
export type ParseResult<TValue> = {
value: TValue;
rest: string;
} | null;