PHP Classes

File: src/data/jobs/interfaces.ts

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WordPress React Plugin Kit   src/data/jobs/interfaces.ts   Download  
File: src/data/jobs/interfaces.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WordPress React Plugin Kit
Environment to develop new WordPress plugins
Author: By
Last change:
Date: 1 year ago
Size: 196 bytes
 

Contents

Class file image Download
export interface IJob { id: number; title: string; } export interface IJobs { jobs: IJob[]; loadingJobs: boolean; totalPage: number; total: number; filters: object; }