Skip to content
Snippets Groups Projects
Commit 281c5aac authored by Hubert Chathi's avatar Hubert Chathi
Browse files

fix type signature of unpickle in Inbound/OutboundGroupSession

Thanks to Dominic Fischer for spotting.
parent 611d3949
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ declare class InboundGroupSession {
constructor();
free(): void;
pickle(key: string): string;
unpickle(key: string, pickle: string): string;
unpickle(key: string, pickle: string);
create(session_key: string): string;
import_session(session_key: string): string;
decrypt(message: string): object;
......@@ -76,7 +76,7 @@ declare class OutboundGroupSession {
constructor();
free(): void;
pickle(key: string): string;
unpickle(key: string): string;
unpickle(key: string, pickle: string);
create(): void;
encrypt(plaintext: string): string;
session_id(): string;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment