Files
banner/web/src/lib/bindings/Enrollment.ts
Xevion 215703593b refactor: consolidate course data models into structured types
Extract DateRange, MeetingLocation, CreditHours, CrossList, Enrollment,
and RmpRating into dedicated types. Replace primitive fields across
backend models and frontend bindings with type-safe alternatives.
2026-02-01 04:07:06 -06:00

7 lines
262 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
/**
* Enrollment counts for a course section.
*/
export type Enrollment = { current: number, max: number, waitCount: number, waitCapacity: number, };