Files
bsky-social-app/src/screens/Signup/StepCaptcha/CaptchaWebView.shared.ts
T
Samuel Newman 007c21fa8e Add moduleSuffixes to tsconfig (#11146)
Co-authored-by: Claude <noreply@anthropic.com>
2026-07-16 12:47:53 -07:00

11 lines
249 B
TypeScript

import {type SignupState} from '#/screens/Signup/state'
export type CaptchaWebViewProps = {
url: string
stateParam: string
state?: SignupState
onComplete: () => void
onSuccess: (code: string) => void
onError: (error: unknown) => void
}