1 2 3 4 5 6 7 8 9 10 11 12 13 14import { add, multiply } from "@utils/math"; import { config } from "@/config"; export class Calculator { constructor() { this.name = config.appName; } add(a, b) { return add(a, b); } multiply(a, b) { return multiply(a, b); } }