> For the complete documentation index, see [llms.txt](https://docs.hello-lisa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hello-lisa.com/developers/widgets/promo-widget/configuration-options/countdown-deprecated.md).

# Countdown (deprecated)

{% hint style="danger" %}
Deprecated!

Use Web SDK config localisation.alertCountdownCaption and localisation.alertCountdownComplete instead.
{% endhint %}

The optional countdown option, allows you to set captions for the different stages of the countdown view. The caption value is rendered, if the countdown is still running, while the completed value is rendered, when the countdown is completed, but the show has not yet started.

The captions are rendered underneath the show's title.

```typescript
const alertConfig: Partial<AlertConfig> = {
  countdown: {
    caption: 'Going live in',
    completed: 'Starting soon',
  },
};
```
