Files
klz-cables.com/.pnpm-store/v10/files/35/0c3bf2e85ffac079e3966aecc7889891c427e2e0b6da0cb1158adb8ae45fa5c6a2544046ffe98842c0eabdbea8a32bd227d7e497f6f67b7a9baeb2b9753232
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

10 lines
265 B
Plaintext

import { IPropertyIdentValueDescriptor } from '../IPropertyDescriptor';
export declare const enum POSITION {
STATIC = 0,
RELATIVE = 1,
ABSOLUTE = 2,
FIXED = 3,
STICKY = 4
}
export declare const position: IPropertyIdentValueDescriptor<POSITION>;