add the optional properties to ReceivedStatusUpdate

the docs in `deltachat.h` mention these, so I assume they are returned here too.
master
Simon Laux 2022-03-29 00:15:33 +02:00 committed by bjoern
parent c3467cca8a
commit 4838dbf49f
1 changed files with 4 additions and 0 deletions

4
webxdc.d.ts vendored
View File

@ -22,6 +22,10 @@ type ReceivedStatusUpdate<T> = {
serial: number;
/** the maximum serial currently known */
max_serial: number;
/** optional, short, informational message. */
info?: string;
/** optional, short text, shown beside app icon. If there are no updates, an empty JSON-array is returned. */
summary?: string;
};
interface Webxdc<T> {