feat: expose `meta` on `IDecodedMessage`

Decoders are expected to expose this field in their return type.
Somehow missed in previous PRs.
This commit is contained in:
fryorcraken.eth 2023-05-10 14:41:07 +10:00
parent af927933a9
commit 5724bb2b21
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ export interface IDecodedMessage {
timestamp: Date | undefined;
rateLimitProof: IRateLimitProof | undefined;
ephemeral: boolean | undefined;
meta: Uint8Array | undefined;
}
export interface IDecoder<T extends IDecodedMessage> {