default: {
    getStudentsFromAllCourses(): Promise<QueryResult>;
    getStudentsFromInstructorCourses(instructorId: any): Promise<QueryResult>;
} = ...

Type declaration

  • getStudentsFromAllCourses:function
  • getStudentsFromInstructorCourses:function
    • Gets all students with their attendance from courses where the specified user is an instructor

      Parameters

      • instructorId: any

        The ID of the instructor

      Returns Promise<QueryResult>

      Promise with array of students and their course and attendance details