> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# end$

> Observable for end call capability

```ts
get end$(): Observable<boolean>
```

Observable for end call capability

## end

```ts
get end(): boolean
```

Current end call capability

## **Examples**

```ts
capabilities.end$.subscribe((end) => {
  console.log('end:', end);
});
```