UNPKG
phemail
Version:
latest (0.0.2)
0.0.2
0.0.1
third party authentication.
phemail
/
dist
/
src
/
app.d.ts
12 lines
(11 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
interface
AppProps
{
clientId
?:
string
;
leadType
?:
number
;
buttonText
?:
string
;
emailNotification
?:
string
;
buttonPosition
?:
string
;
successUrl
?:
string
; }
declare
const
App
:
React
.
FC
<
AppProps
>;
export
default
App
;