# Exports

### Client Exports

notify

```lua
exports["mday_lib"]:notify(title, message, notifyType)
```

| Parameter  | Type   | Description                |
| ---------- | ------ | -------------------------- |
| title      | string | Notification Title         |
| message    | string | Notification Message       |
| notifyType | string | "info", "warning", "error" |

startProgress

```lua
exports["mday_lib"]:startProgress({
    duration = 5,
    label = label or 'Loading...',
    useWhileDead = true,
    allowRagdoll = true,
    disable = {
        move = true,
        combat = true,
        car = true,
        sprint = true,
        mouse = false,
    },
})
```

| Parameter | Type   | Description |
| --------- | ------ | ----------- |
| duration  | number | seconds     |

progressActive

```
exports["mday_lib"]:progressActive()
```

setTask

```lua
exports["mday_lib"]:setTask({
    title = "Task Title",
    description = "Task Description"
})
```

| Parameter   | Type   | Description      |
| ----------- | ------ | ---------------- |
| title       | string | Task Title       |
| description | string | Task Description |
