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
/
lib
/
entities
/
Autorization.js
10 lines
(9 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
Autorization
{
constructor
(
actor, permission =
'active'
) {
this
.
actor
= actor;
this
.
permission
= permission; } }
exports
.
Autorization
=
Autorization
;