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