# export client/server

![](https://1513752357-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeO02s1LifX0PVIZr8OK8%2Fuploads%2FFTyeEj5X2fUDX7bpZHwe%2Fse_not.png?alt=media\&token=cedf4b6f-a6df-48a4-8acc-273839203123)

*export server-side*

`exports.se_notify:`<mark style="color:red;">`notify_s`</mark>`(source, message, category, title, time, background, sound)`

Interface for <mark style="color:red;">notify\_s</mark> function

* <mark style="color:red;">**`source`**</mark>`: mandatory`
* <mark style="color:blue;">**`message`**</mark>`: string`
* <mark style="color:blue;">**`category`**</mark>**`?`**`: string`
* <mark style="color:blue;">**`title`**</mark>**`?`**`: string`
* <mark style="color:blue;">**`time`**</mark>**`?`**`: number`
* <mark style="color:purple;">**`background`**</mark>**`?`**`: string`
* <mark style="color:yellow;">**`sound`**</mark>**`?`**` ``string`

```lua
-- Some example
exports.se_notify:notify_s(
		source,
		"Lorem ipsum dolor sit amet",
	)
exports.se_notify:notify_s(
		source,
		"Lorem ipsum dolor sit amet",
		"ads",
		"Lorem ipsum",
		nil,
		"error"
	)

exports.se_notify:notify_s(
		source,
		"Lorem ipsum dolor sit amet,",
		"ads",
		"Lorem ipsum",
		15000,
		"#ebbd34"
	)
```

*export client-side*

`exports.se_notify:`<mark style="color:red;">`notify_c`</mark>`(message, category, title, time, background, sound)`

Interface  for <mark style="color:red;">notify\_c</mark> function

* <mark style="color:blue;">**`message`**</mark>`:`` `*`string`*
* <mark style="color:blue;">**`category`**</mark>**`?`**`:`` `*`string`*
* <mark style="color:blue;">**`title`**</mark>**`?`**`:`` `*`string`*
* <mark style="color:blue;">**`time`**</mark>**`?`**`:`` `*`number`*
* <mark style="color:purple;">**`background`**</mark>**`?`**`: string`
* <mark style="color:yellow;">**`sound`**</mark>**`?`**` ``string`

```lua
-- Some example
exports.se_notify:notify_c(
		"Lorem ipsum dolor sit amet",
	)
exports.se_notify:notify_c(
		"Lorem ipsum dolor sit amet",
		"ads",
		"Lorem ipsum",
		nil,
		"error"
	)

exports.se_notify:notify_c(
		"Lorem ipsum dolor sit amet,",
		"ads",
		"Lorem ipsum",
		15000,
		"#ebbd34"
	)
```
