UNPKG
@scaleway/sdk-client
Version:
latest (2.1.0)
2.1.0
1.3.3
1.3.2
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.cjs
12 lines
(11 loc)
•
250 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
Symbol
.
toStringTag
, {
value
:
"Module"
});
class
Decimal
{ str;
constructor
(
v
) {
this
.
str
= v; } toString =
() =>
this
.
str
; marshal =
() =>
({
value
:
this
.
str
}); }
exports
.
Decimal
=
Decimal
;