Files
klz-cables.com/.pnpm-store/v10/files/78/74c2b1f8f74ddb8bda7aa5edfffe7eea875479e4398e08a48a933181a31167a18c3427acd00d630de6928b6b141960a49b83bf1eff24b22d0bfd6e9c40278f
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

11 lines
358 B
Plaintext

import { CSSInterpolation } from '@emotion/serialize';
type Keyframes = {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare function keyframes(template: TemplateStringsArray, ...args: CSSInterpolation[]): Keyframes;
export declare function keyframes(...args: CSSInterpolation[]): Keyframes;
export {};