radgrad/radgrad2

View on GitHub
app/imports/ui/components/shared/manage/opportunity/ManageOpportunityProps.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { AcademicTerm, BaseProfile, Interest, Opportunity, OpportunityType } from '../../../../../typings/radgrad';

export interface ManageOpportunityProps {
  opportunity: Opportunity;
  sponsors: BaseProfile[];
  interests: Interest[];
  opportunityTypes: OpportunityType[];
  terms: AcademicTerm[];
}