UNPKG

@webhare/moodle-webservice

Version:

Moodle Web Service API client with intellisense and typechecking

14 lines (13 loc) 409 B
import NumericBoolean from '../types/NumericBoolean'; import IMoodleCourseSectionModule from './IMoodleCourseSectionModule'; export default interface IMoodleCourseSection { id: number; name: string; summary: string; summaryformat: number; visible: NumericBoolean; section: number; hiddenbynumsections: number; uservisible: boolean; modules: IMoodleCourseSectionModule[]; }