> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leanmenu.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# 🔔 | Notifications

> Display notifications with custom text

Lean's notification system to display messages.

## Display notification

Show a notification message of a specific type.

```lua theme={null}
LeanAPI.Notify.Type(text)
```

### Parameters

* `Type` - Success, Normal, Error
* `text` (string) - The message to display

### Returns

```text theme={null}
Nothing
```

### Example

```lua theme={null}
-- Success notification
LeanAPI.Notify.Success("This is a success notification from Lean")

-- Normal notification
LeanAPI.Notify.Normal("This is a normal notification from Lean")

-- Error notification
LeanAPI.Notify.Error("This is an error notification from Lean")
```
