Skip to content

Commit

Permalink
sync Russian
Browse files Browse the repository at this point in the history
  • Loading branch information
MasedMSD committed Dec 24, 2024
1 parent bc31080 commit 63ff4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/docs/ru/advanced/transformers.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ bot.use((ctx, next) => next());
Вот пример трансформирующей функции, которая предотвращает все вызовы API:

```ts
// Некорректно возвращают undefined вместо соответствующих типов объектов.
bot.api.config.use((prev, method, payload) => undefined as any);
// Некорректно возвращают `{ ok: true } as any` вместо соответствующих типов объектов.
bot.api.config.use((prev, method, payload, signal) => ({ ok: true }) as any);
```

Вы также можете установить трансформирующие функции в API-объект контекстного объекта.
Expand Down

0 comments on commit 63ff4c4

Please # to comment.