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