mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-23 01:25:02 +00:00
made the option nullable
This commit is contained in:
parent
48089d1831
commit
50bc5429c1
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ export const ReplyAction = automodAction({
|
||||||
t.type({
|
t.type({
|
||||||
text: tMessageContent,
|
text: tMessageContent,
|
||||||
auto_delete: tNullable(t.union([tDelayString, t.number])),
|
auto_delete: tNullable(t.union([tDelayString, t.number])),
|
||||||
use_inline_reply: t.boolean,
|
use_inline_reply: tNullable(t.boolean),
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue