/** * 猎聘简历详情命令 - 招聘者端 * * 走 LPT 接口 com.liepin.rresume.usere.pc.resume-view(抓包确认): * body: pageParamVo={"resIdEncode":"<简历ID>","sfrom":"R_SEARCH_CONDITION"} * resp: data.resumeDetailVo { baseInfo, jobWant, eduExperiences[], workExperiences[], ... } * talentId 即 search 返回的 resume_id(resIdEncode)。 */ import { Page } from 'puppeteer-core'; export interface ResumeOptions { talentId: string; } export declare function resume(page: Page, options: ResumeOptions): Promise; /** 简历命令定义 */ export declare const resumeCommand: { name: string; description: string; args: { name: string; type: string; required: boolean; positional: boolean; help: string; }[]; columns: { header: string; key: string; width: number; }[]; func: typeof resume; }; //# sourceMappingURL=resume.d.ts.map