import type { OccupationInterface } from "./occupation.interface"; export interface SearchJobInterface{ maxDistance?: number | undefined | null; occupations: OccupationInterface[]; workTimes: number[]; workTypes: number[]; term?: string; }