mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 06:19:37 +01:00
36 lines
591 B
Markdown
36 lines
591 B
Markdown
|
---
|
||
|
title: updateLangPack
|
||
|
description: updateLangPack attributes, type and example
|
||
|
---
|
||
|
## Constructor: updateLangPack
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|difference|[LangPackDifference](../types/LangPackDifference.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Update](../types/Update.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$updateLangPack = ['_' => 'updateLangPack', 'difference' => LangPackDifference, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
updateLangPack={_='updateLangPack', difference=LangPackDifference, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|