Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 545x 251x | import { AmountDto } from "../dtos/values.dto.js";
import { Amount } from "../../tr8-script/domain/value.js";
class AmountMapper {
static toDTO(domain: Amount): AmountDto {
return {
amount: domain.amount.toString(),
scale: domain.scale.toString(),
};
}
static fromDTO(dto: AmountDto): Amount {
return {
amount: BigInt(dto.amount),
scale: BigInt(dto.scale),
};
}
}
export { AmountMapper };
|