Files
klz-cables.com/.pnpm-store/v10/files/24/7758f6fc88a4cb6b6d82b25b5e3b81a6247a3992a876f1c6547f8ab1b2c076c9ea0ae2d8e47a99ada96d202aa5fb0c4266d73b58a375be78d02029f8c5c331
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

17 lines
767 B
Plaintext

import type { FeedbackInternalOptions } from '@sentry/core';
/**
* Partial configuration that overrides default configuration values
*
* This is the config that gets passed into the integration constructor
*/
export interface OptionalFeedbackConfiguration extends Omit<Partial<FeedbackInternalOptions>, 'themeLight' | 'themeDark'> {
themeLight?: Partial<FeedbackInternalOptions['themeLight']>;
themeDark?: Partial<FeedbackInternalOptions['themeLight']>;
}
/**
* Partial configuration that overrides default configuration values
*
* This is the config that gets passed into the integration constructor
*/
export type OverrideFeedbackConfiguration = Omit<Partial<FeedbackInternalOptions>, 'themeLight' | 'themeDark'>;
//# sourceMappingURL=types.d.ts.map