Files
klz-cables.com/.pnpm-store/v10/files/17/9325c91d62bcfde3daebf4d0fe0a6d5ab0ae7d04f92b17c48653694acfdd8cb59a146d130c5d81d13dcefb606f01b03958a0786da25aa275464b8292293e45
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

31 lines
1.1 KiB
Plaintext

type ComponentType<T> = any;
declare const hType: any;
import { FeedbackInternalOptions, FeedbackModalIntegration } from '@sentry/core';
// replaced import from preact
import * as Hooks from 'preact/hooks';
interface FactoryParams {
h: typeof hType;
hooks: typeof Hooks;
/**
* A ref to a Canvas Element that serves as our "value" or image output.
*/
outputBuffer: HTMLCanvasElement;
/**
* A reference to the whole dialog (the parent of this component) so that we
* can show/hide it and take a clean screenshot of the webpage.
*/
dialog: ReturnType<FeedbackModalIntegration['createDialog']>;
/**
* The whole options object.
*
* Needed to set nonce and id values for editor specific styles
*/
options: FeedbackInternalOptions;
}
interface Props {
onError: (error: Error) => void;
}
export declare function ScreenshotEditorFactory({ h, hooks, outputBuffer, dialog, options, }: FactoryParams): ComponentType<Props>;
export {};
//# sourceMappingURL=ScreenshotEditor.d.ts.map