/** * 猎聘打招呼命令 - 招聘者端 * * 走 LPT 接口 com.liepin.im.b.chat.to-chat2(抓包确认): * body: usercIdEncode=<候选人 user_id>&ejobId=<职位 id>&imSign=&source=&ext=%7B%7D * resp: { flag:1, data:{} } * 发起沟通即「一键打招呼」,未沟通过时会使用职位预设招呼语。 * * 入参兼容 search 返回的 resume_id 或 user_id。传 message 时,会在建立会话后 * 打开 IM 面板补发自定义文本。 */ import { Page } from 'puppeteer-core'; export interface GreetOptions { usercId: string; ejobId?: string; jobId?: string; message?: string; } export declare function greet(page: Page, options: GreetOptions): Promise; /** 打招呼命令定义 */ export declare const greetCommand: { name: string; description: string; args: ({ name: string; type: string; required: boolean; positional: boolean; help: string; default?: undefined; } | { name: string; type: string; default: string; help: string; required?: undefined; positional?: undefined; })[]; columns: { header: string; key: string; width: number; }[]; func: typeof greet; }; //# sourceMappingURL=greet.d.ts.map