UNPKG

@scaleway/sdk-client

Version:
12 lines (11 loc) 158 B
class Decimal { str; constructor(v) { this.str = v; } toString = () => this.str; marshal = () => ({ value: this.str }); } export { Decimal };