/** * 猎聘人才库命令 - 走 LPT 招聘者端 * * 关键变更 (修复 404): * - 旧: navigateTo(www.liepin.com/talent) + liepinFetch(api-c.liepin.com/...pc-talent-list) * - 新: navigateToLpt(lpt.liepin.com/resume/apply) + lptFetch(api-lpt.liepin.com/...rapply.platform.e.serch-by-usere.v2) * LPT 上"人才管理"是 /resume/apply,对应接口是 rapply 的 serch-by-usere.v2, * 实际语义是"投递到我的职位的候选人"(apply 列表),跟旧 talent 库语义有差。 */ import { Page } from 'puppeteer-core'; export interface TalentOptions { query?: string; city?: string; experience?: string; salary?: string; degree?: string; page?: number; limit?: number; } export declare function talent(page: Page, options: TalentOptions): Promise; /** 人才列表命令定义 */ export declare const talentCommand: { name: string; description: string; args: ({ name: string; type: string; default: string; help: string; } | { name: string; type: string; default: number; help: string; })[]; columns: { header: string; key: string; width: number; }[]; func: typeof talent; }; //# sourceMappingURL=talent.d.ts.map