venom-bot
Version:
Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design archite
32 lines (31 loc) • 549 B
TypeScript
export interface PicTumb {
attributes: Attributes;
eurl: string;
eurlStale: boolean;
fallbackType: string;
id: ID;
img: string;
imgFull: string;
isState: boolean;
pendingPic: any;
raw: any;
stale: boolean;
tag: string;
token: string;
}
interface Attributes {
eurl: string;
eurlStale: boolean;
id: ID;
pendingPic: any;
raw: any;
stale: boolean;
tag: string;
token: string;
}
interface ID {
server: string;
user: string;
_serialized: string;
}
export {};