# Nominal Interfaces

- nominal interfaces (traits)

```ds
newtype interface Add<T> {
    add(a: T, b: T): T;
}
```
