UNPKG

@jikey/fcazero

Version:

Facebook Messenger bot, and is one of the most advanced next-generation Facebook Chat API (FCA)

16 lines (13 loc) 659 B
import * as pify from 'pify'; import { CookieJar } from 'tough-cookie'; import { MakeDefaultsReturn } from '../types/utils/makeDefaults.js'; import { GetOptions } from '../types/utils/axios.js'; import { Ctx } from '../types/global.js'; import 'emittery'; import 'mqtt'; declare class MakeDefaults { static json(url: string, jar: CookieJar, qs: Record<string, unknown>, options: GetOptions, ctx: Ctx, customHeader: Record<string, string>): Promise<unknown[]>; static makeDefaults(html: string, userID: string, ctx: Ctx): MakeDefaultsReturn; static promisify(func: any): pify.PromisifyModule<any, false, true, [], []>; } export { MakeDefaults };