/** * 猎聘登录命令 - 招聘者端 */ import { Page } from 'puppeteer-core'; export interface LoginOptions { timeout?: number; } export declare function login(page: Page, options: LoginOptions): Promise; /** 登录命令定义 */ export declare const loginCommand: { name: string; description: string; args: { name: string; type: string; default: number; help: string; }[]; columns: { header: string; key: string; width: number; }[]; func: typeof login; }; //# sourceMappingURL=login.d.ts.map