Spaces:
Paused
Paused
File size: 439 Bytes
9844ee9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | export interface PartialMessage {
id: ID;
body: string;
type: string;
t: number;
notifyName: string;
from: string;
to: string;
self: string;
ack: number;
invis: boolean;
star: boolean;
broadcast: boolean;
mentionedJidList: any[];
isForwarded: boolean;
labels: any[];
}
interface ID {
fromMe: boolean;
remote: string;
id: string;
_serialized: string;
}
export {};
|