export interface ApplyOptions { query: string area?: number maxApplies?: number } export interface VacancyRef { title: string href: string } export interface ApplyResult { applied: VacancyRef[] skipped: VacancyRef[] errors: Array error?: string } export interface ResumeListItem { title: string href: string }