Files
klz-cables.com/.pnpm-store/v10/files/97/6ed78d500db39e19eaf2975044576bb50cdaec090ba7c6765e42d8630d648c3767ac22c943ce7c42b4af03d3d33cec44dd4330fc2ec231ddc3cc94cca7424a
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
527 B
Plaintext

import { ITypeDescriptor } from '../ITypeDescriptor';
import { Context } from '../../core/context';
export declare type Color = number;
export declare const color: ITypeDescriptor<Color>;
export declare const isTransparent: (color: Color) => boolean;
export declare const asString: (color: Color) => string;
export declare const pack: (r: number, g: number, b: number, a: number) => Color;
export declare const parseColor: (context: Context, value: string) => Color;
export declare const COLORS: {
[key: string]: Color;
};