# core/ids/overlay.ids.ts

> 3 lines of code and 2 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-core-ids-overlay-ids-ts
Source text: https://banes-lab.com/assets/sources/source.523a4b484c53fa1a05a30a34404af1131e37f29948075ae6ccf52d5fc1e62613.generated.txt

## Definitions

- `OVERLAY_REQUESTED` (lexical_declaration, line 3, exported)
- `OVERLAY_DISMISSED` (lexical_declaration, line 5, exported)

## Source

```typescript
import type { EventName } from "#types/event.types";

export const OVERLAY_REQUESTED = "overlay.requested" satisfies EventName;

export const OVERLAY_DISMISSED = "overlay.dismissed" satisfies EventName;
```
