UNPKG
@enclavemoney/enclave-wallet-playground
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
A simple playground for enclave wallet SDK
@enclavemoney/enclave-wallet-playground
/
dist
/
components
/
Dashboard
/
Dashboard.d.ts
12 lines
(11 loc)
•
299 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
"react"
;
import
{
ThemeMode
,
Theme
}
from
"../../types/theme"
;
export
declare
const
Dashboard
:
React
.
FC
<{
result
:
any
;
onLogout
:
() =>
void
;
onShowSwap
:
() =>
void
;
onShowTransfer
:
() =>
void
;
sdkKey
:
string
;
theme
?:
ThemeMode
;
customTheme
?:
Theme
; }>;