@wppconnect-team/wppconnect
Version:
WPPConnect is an open source project developed by the JavaScript community with the aim of exporting functions from WhatsApp Web to the node, which can be used to support the creation of any interaction, such as customer service, media sending, intelligen
15 lines (14 loc) • 378 B
TypeScript
interface selectOutput {
webpBase64: string;
metadata: {
width?: number;
height?: number;
};
}
export declare function stickerSelect(_B: Buffer, _t: number): Promise<false | selectOutput>;
interface CreateSize {
width?: number;
height?: number;
}
export declare function resizeImg(buff: Buffer, size: CreateSize): Promise<string>;
export {};