🔧 refactor(bot-commands): Убран лишний код, оптимизированы импорты и функции.

This commit is contained in:
Oscar
2026-05-26 17:46:51 +03:00
parent 6bd70a2e75
commit d2a49cb1eb
9 changed files with 180 additions and 210 deletions

22
src/hh/types.ts Normal file
View File

@@ -0,0 +1,22 @@
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
}