UNPKG
@particle-network/auth-core-modal
Version:
latest (1.5.2)
1.5.2
1.5.2-alpha.2
1.5.2-alpha.1
1.5.2-alpha.0
1.5.1
1.5.0
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.5-alpha.0
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.9
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.0.0
1.0.0-alpha.9
1.0.0-alpha.7
1.0.0-alpha.6
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
1.0.0-alpha.0
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
particle.network
@particle-network/auth-core-modal
/
dist
/
components
/
phoneInputItem
/
index.d.ts
12 lines
(11 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
{
FormInstance
}
from
'antd'
;
import
React
from
'react'
;
interface
Iprops
{
form
:
FormInstance
;
name
:
string
;
disabled
?:
boolean
;
previewMode
?:
string
; [
key
:
string
]:
any
; }
declare
const
PhoneInputItem
:
(
props
:
Iprops
) =>
React
.
JSX
.
Element
;
export
default
PhoneInputItem
;