39 lines
821 B
Markdown
39 lines
821 B
Markdown
|
---
|
||
|
title: wallPaperNoFile
|
||
|
description: wallPaperNoFile attributes, type and example
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: wallPaperNoFile
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|default|[Bool](../types/Bool.md) | Optional|
|
||
|
|dark|[Bool](../types/Bool.md) | Optional|
|
||
|
|settings|[WallPaperSettings](../types/WallPaperSettings.md) | Optional|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [WallPaper](../types/WallPaper.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$wallPaperNoFile = ['_' => 'wallPaperNoFile', 'default' => Bool, 'dark' => Bool, 'settings' => WallPaperSettings];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
wallPaperNoFile={_='wallPaperNoFile', default=Bool, dark=Bool, settings=WallPaperSettings}
|
||
|
|
||
|
```
|
||
|
|
||
|
|