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
16 lines
838 B
Plaintext
16 lines
838 B
Plaintext
type VNode = any;
|
|
import { FeedbackFormData, FeedbackInternalOptions, FeedbackScreenshotIntegration, SendFeedback } from '@sentry/core';
|
|
// replaced import from preact
|
|
export interface Props extends Pick<FeedbackInternalOptions, 'showEmail' | 'showName'> {
|
|
options: FeedbackInternalOptions;
|
|
defaultEmail: string;
|
|
defaultName: string;
|
|
onFormClose: () => void;
|
|
onSubmit: SendFeedback;
|
|
onSubmitSuccess: (data: FeedbackFormData, eventId: string) => void;
|
|
onSubmitError: (error: Error) => void;
|
|
screenshotInput: ReturnType<FeedbackScreenshotIntegration['createInput']> | undefined;
|
|
}
|
|
export declare function Form({ options, defaultEmail, defaultName, onFormClose, onSubmit, onSubmitSuccess, onSubmitError, showEmail, showName, screenshotInput, }: Props): VNode;
|
|
//# sourceMappingURL=Form.d.ts.map
|