/** * 猎聘职位列表命令 - 走 LPT 招聘者端 * * 关键变更 (修复 404): * - 旧: navigateTo(www.liepin.com/job/manage) + liepinFetch(api-c.liepin.com/...pc-job-list) * - 新: navigateToLpt(lpt.liepin.com/job/manager) + lptFetch(api-lpt.liepin.com/...jobmanage.list) * 旧 URL 早已 404。LPT 上对应的入口是 /job/manager,BFF 端点是 jobmanage.list。 */ import { Page } from 'puppeteer-core'; export interface JoblistOptions { status?: string; page?: number; limit?: number; } export declare function joblist(page: Page, options: JoblistOptions): Promise; /** 职位列表命令定义 */ export declare const joblistCommand: { 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 joblist; }; //# sourceMappingURL=joblist.d.ts.map