UNPKG
@scaleway/sdk-client
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
Scaleway SDK Client
github.com/scaleway/scaleway-sdk-js
scaleway/scaleway-sdk-js
@scaleway/sdk-client
/
dist
/
scw
/
custom-types.js
12 lines
(11 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
class
Decimal
{ str;
constructor
(
v
) {
this
.
str
= v; } toString =
() =>
this
.
str
; marshal =
() =>
({
value
:
this
.
str
}); }
export
{
Decimal
};