007c21fa8e
Co-authored-by: Claude <noreply@anthropic.com>
11 lines
249 B
TypeScript
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
|
|
}
|