Correct `message_index` type in return signature of `InboundGroupSession::decrypt`

master
Michael Telatynski 2023-03-29 08:33:55 +00:00
parent 8f4b81b512
commit 0880461134
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ declare class InboundGroupSession {
create(session_key: string): string;
import_session(session_key: string): string;
decrypt(message: string): {
message_index: string;
message_index: number;
plaintext: string;
};
session_id(): string;