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