# Power

`import { Power } from "destack:ops";`

Interface for the `**` operator.

`a ** b` becomes `a.power(b)`.

```ds title="Power"
export newtype interface Power<T = this> {
    Output;
    power(other: T): this.Output;
}
```

[language/library/src/ops/power.ds:5:11](https://github.com/destack-sh/destack/blob/main/language/library/src/ops/power.ds#L5-L11)

## Members

### `Output`

The result type.

### `power(other: T): this.Output`

Raise this value to `other`.
