radgrad/radgrad2

View on GitHub
app/imports/ui/components/advisor/manage/ManageStudentProps.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
  CareerGoal,
  Course,
  Interest,
  Opportunity,
  ProfileCareerGoal, ProfileInterest,
  StudentProfile,
} from '../../../../typings/radgrad';

export interface ManageStudentProps {
  student: StudentProfile;
  careerGoals: CareerGoal[];
  courses: Course[];
  interests: Interest[];
  opportunities: Opportunity[];
  profileCareerGoals: ProfileCareerGoal[];
  profileInterests: ProfileInterest[];
}