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

15 lines
342 B
Plaintext

import {Value} from './index';
/**
* Sass's [mixin type](https://sass-lang.com/documentation/values/mixins).
*
* @category Custom Function
*/
export class SassMixin extends Value {
/**
* It is not possible to construct a Sass mixin outside of Sass. Attempting to
* construct one will throw an exception.
*/
constructor();
}