UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

31 lines (30 loc) 566 B
export interface Job { title: string; url: string; status: 0 | 1; occupations: string[]; employmentType: string[]; nid: number; } export interface FacetValue { filter: number; name?: string; count: number; children?: FacetValue[]; } export interface Facet { title?: string; name: string; values: FacetValue[]; } export interface FacetTerms { terms: [{ id: string; name: string; }]; } export interface SearchAPISearch { result_count: number; documents: Job[]; facets: Facet[]; }