Files
hh-auto-reply/src/hh/types.ts

23 lines
369 B
TypeScript

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<VacancyRef & { message: string }>
error?: string
}
export interface ResumeListItem {
title: string
href: string
}