mirror of
https://github.com/hempyhemp/hh-auto-reply.git
synced 2026-06-08 18:04:57 +00:00
23 lines
369 B
TypeScript
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
|
|
}
|