UNPKG

@scaleway/sdk-client

Version:
12 lines (11 loc) 250 B
"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;