// import {WorkflowStage} from "./typeDefinitions"; export type StudentUser = { UserID: string, forename: string, surname: string, email:string, created: Date, referral: string } export type InstituteStudentUser = { UserID: string, forename: string, surname: string, email: string, created: Date, activated: Date, cohortID: string, // cohortData: Cohort } export type InstituteStaffUser = { UserID: string, forename: string, surname: string, email: string, created: Date, activated: Date, } export type ProviderUser = { UserID: string, } /* export type Cohort = { CohortID: string, name: string, created: Date, workflow: WorkflowStage[], } */