@neoxr/wb
Version:
A simple and easy-to-use WhatsApp bot module built on top of Baileys. Designed for effortless integration and quick setup.
36 lines (35 loc) • 830 B
TypeScript
import { Collection } from '../Utils/types';
declare global {
var creator: string;
}
interface reqUtils {
reqGet: (req: any, params: string[]) => {
status: boolean;
creator?: string;
msg?: string;
};
reqPost: (req: any, params: string[]) => {
status: boolean;
creator?: string;
msg?: string;
};
url: (url: string) => {
status: boolean;
creator?: string;
msg?: string;
};
number: (str: number) => {
status: boolean;
creator?: string;
msg?: string;
};
error: (msg?: string) => {
creator: string;
status: false;
msg: string;
};
}
export declare const reqUtils: reqUtils;
export declare const allowedIPs: any[];
export declare const collection: Collection[];
export {};