UNPKG
@votemike/property
Version:
latest (0.2.0)
0.2.0
0.1.2
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
Property class and related classes
@votemike/property
/
dist
/
src
/
fee.d.ts
9 lines
(8 loc)
•
182 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
FeeInterface
{
amount
:
number
; }
export
default
class
Fee
{
amount
:
number
;
constructor
(
amount
:
number
);
static
fromJson
(
json
:
FeeInterface
):
Fee
; }