File tree Expand file tree Collapse file tree
frontend/src/domains/jobs/domain Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export interface Job {
2- palavra ?: string | null ;
2+ keyword ?: string | null ;
33 keywords ?: string [ ] | null ;
4- titulo ?: string | null ;
5- empresa ?: string | null ;
4+ title ?: string | null ;
5+ company ?: string | null ;
66 source ?: string | null ;
77 sources ?: string [ ] | null ;
8- local ?: string | null ;
9- link ?: string | null ;
10- }
11-
12- export interface JobFile {
13- file : string ;
8+ location ?: string | null ;
9+ url ?: string | null ;
1410}
1511
1612export interface JobsMeta {
17- file : string ;
18- modifiedAt : string | number | null ;
13+ hasNext : boolean ;
14+ hasPrev : boolean ;
15+ limit : number ;
16+ page : number ;
1917 total : number ;
18+ totalPages : number ;
2019}
2120
22- export interface JobsResponse {
21+ export interface JobsResponse extends JobsMeta {
2322 jobs : Job [ ] ;
24- file : string ;
25- modifiedAt : string | number | null ;
26- total : number ;
2723}
You can’t perform that action at this time.
0 commit comments