Files
klz-cables.com/.pnpm-store/v10/files/3e/a66a6ee9f04bddf295f92875fbbe26c59af0b9f402a4f99df934464c5bec7a283a87586708b68d6b77be0319547cba05328187643bbfd0547b408f4a960f0d
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

27 lines
557 B
Plaintext

import type { StyleSheet } from '@emotion/sheet'
export type { StyleSheet }
export type RegisteredCache = Record<string, string | undefined>
export type SerializedStyles = {
name: string
styles: string
next?: SerializedStyles
}
export type EmotionCache = {
inserted: Record<string, string | true | undefined>
registered: RegisteredCache
sheet: StyleSheet
key: string
compat?: true
nonce?: string
insert: (
selector: string,
serialized: SerializedStyles,
sheet: StyleSheet,
shouldCache: boolean
) => string | void
}