Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@adiwajshing/baileys/lib/Utils/decode-wa-message.d.ts
1129 views
1
import { proto } from '../../WAProto';
2
import { AuthenticationState } from '../Types';
3
import { BinaryNode } from '../WABinary';
4
export declare const decodeMessageStanza: (stanza: BinaryNode, auth: AuthenticationState) => {
5
fullMessage: proto.IWebMessageInfo;
6
category: string;
7
author: string;
8
decryptionTask: Promise<void>;
9
};
10
11