default: {
    getStudentsFromAllCourses(): Promise<QueryResult>;
    getStudentsFromInstructorCourses(instructorId: any): Promise<QueryResult>;
} = ...
Type declaration
- getStudentsFromAllCourses:function- getStudentsFromAllCourses(): Promise<QueryResult> - Returns Promise<QueryResult>
 
- getStudentsFromInstructorCourses:function- getStudentsFromInstructorCourses(instructorId: any): Promise<QueryResult> - Returns Promise<QueryResult>- Promise with array of students and their course and attendance details 
 
Gets all students with their attendance from courses where the specified user is an instructor