build: updated to 179 layer #56

Merged
teidesu merged 13 commits from layer179 into master 2024-05-06 12:28:14 +03:00
Showing only changes of commit 82b1552468 - Show all commits

View file

@ -36,6 +36,11 @@ export const incoming: UpdateFilter<Message, { isOutgoing: false }> = (msg) => !
*/
export const outgoing: UpdateFilter<Message, { isOutgoing: true }> = (msg) => msg.isOutgoing
/**
* Filter for scheduled messages
*/
export const scheduled: UpdateFilter<Message, { isScheduled: true }> = (msg) => msg.isScheduled
/**
* Filter messages that are replies to some other message
*/