UNPKG
@dapix/react-native-fio
Version:
latest (0.1.0)
0.1.0
The FIO react-native-fio SDK communicates with the FIO Blockchain.
@dapix/react-native-fio
/
src
/
entities
/
Autorization.ts
9 lines
(8 loc)
•
196 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
class
Autorization
{
actor
:
string
permission
:
string
constructor
(
actor
:
string
, permission=
'active'
){
this
.
actor
= actor
this
.
permission
= permission } }