Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export interface IProject {
  2.     pid: string,
  3.     author: string,
  4.     created_date: Date,
  5.     title: string,
  6.     description: string,
  7.     pmc: string,
  8.     sector: string ,
  9.     project_state: string,
  10.     project_codes: string,
  11.     project_use_cases: string,
  12.     customer_business_sector: string,
  13.     referral_projects: string,
  14.     contact: string,
  15.     attached_items: string,
  16.     attached_links: string,
  17.     wbso: string,
  18. }
  19.  
  20. activeProject: <IProject> = {};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement