@suolun/verification-code
Version:
A description for the module
14 lines (11 loc) • 326 B
TypeScript
import React from 'react'
interface VerifationCodeProps {
onGetVerifationCode: (value: string) => void
len?: number
autoFocus?: boolean
type?: 'text' | 'number' | 'tel'
defaultValue?: string
}
declare const VerifationCode: React.FC<VerifationCodeProps>
export default VerifationCode
export { VerifationCodeProps }