Add import { Add } from "destack:ops"; Interface for the + operator. a + b becomes a.add(b). export newtype interface Add { Output; add(other: T): this.Output; } language/library/src/ops/plus.ds:5:11 Members Output The result type. add(other: T): this.Output Add other to this value.