Files
klz-cables.com/.pnpm-store/v10/files/02/1d944e3b150c5041fca21f4fbbdd0ff2d3fd636de41ffa471ac207f62d8987cf58ef52e13bf57e01b520bb0b56a89d856bd90d779eaea99ed2447064eb745e
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

35 lines
1.5 KiB
Plaintext

import { type LocaleData } from "./core.js";
import { type LDMLPluralRule } from "./plural-rules.js";
export interface FieldData {
"0"?: string;
"1"?: string;
"-1"?: string;
"2"?: string;
"-2"?: string;
"3"?: string;
"-3"?: string;
future: RelativeTimeData;
past: RelativeTimeData;
}
type RelativeTimeData = { [u in LDMLPluralRule]? : string };
export type UnpackedLocaleFieldsData = { [f in RelativeTimeField]? : FieldData } & {
nu: Array<string | null>;
};
export type LocaleFieldsData = { [f in RelativeTimeField]? : FieldData } & {
nu?: Array<string | null>;
};
export type RelativeTimeField = "second" | "second-short" | "second-narrow" | "minute" | "minute-short" | "minute-narrow" | "hour" | "hour-short" | "hour-narrow" | "day" | "day-short" | "day-narrow" | "week" | "week-short" | "week-narrow" | "month" | "month-short" | "month-narrow" | "quarter" | "quarter-short" | "quarter-narrow" | "year" | "year-short" | "year-narrow";
export type RelativeTimeFormatSingularUnit = Exclude<Intl.RelativeTimeFormatUnit, "seconds" | "minutes" | "hours" | "days" | "weeks" | "months" | "quarters" | "years">;
export type RelativeTimeLocaleData = LocaleData<LocaleFieldsData>;
export interface RelativeTimeFormatInternal {
numberFormat: Intl.NumberFormat;
pluralRules: Intl.PluralRules;
locale: string;
fields: LocaleFieldsData;
style: Intl.ResolvedRelativeTimeFormatOptions["style"];
numeric: Intl.ResolvedRelativeTimeFormatOptions["numeric"];
numberingSystem: string;
initializedRelativeTimeFormat: boolean;
}
export {};