Files
klz-cables.com/.pnpm-store/v10/files/5c/81fe7b2cb56b12e4f4d0ec9d5fa58c2655a513d034973d22c5924cee7f7dfc2ece792a17a761c6ae3fc68b53fa9b54d9d36cc8d396bfc12a74a49229ae62fc
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

25 lines
913 B
Plaintext

/**
* A time duration.
*/
export type DurationUnit = 'nanosecond' | 'microsecond' | 'millisecond' | 'second' | 'minute' | 'hour' | 'day' | 'week';
/**
* Size of information derived from bytes.
*/
export type InformationUnit = 'bit' | 'byte' | 'kilobyte' | 'kibibyte' | 'megabyte' | 'mebibyte' | 'gigabyte' | 'gibibyte' | 'terabyte' | 'tebibyte' | 'petabyte' | 'pebibyte' | 'exabyte' | 'exbibyte';
/**
* Fractions such as percentages.
*/
export type FractionUnit = 'ratio' | 'percent';
/**
* Untyped value without a unit.
*/
export type NoneUnit = '' | 'none';
type LiteralUnion<T extends string> = T | Pick<T, Exclude<keyof T, T>>;
export type MeasurementUnit = LiteralUnion<DurationUnit | InformationUnit | FractionUnit | NoneUnit>;
export type Measurements = Record<string, {
value: number;
unit: MeasurementUnit;
}>;
export {};
//# sourceMappingURL=measurement.d.ts.map