mirror of
https://github.com/Xevion/banner.git
synced 2026-02-01 12:23:41 -06:00
Extract DateRange, MeetingLocation, CreditHours, CrossList, Enrollment, and RmpRating into dedicated types. Replace primitive fields across backend models and frontend bindings with type-safe alternatives.
7 lines
262 B
TypeScript
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, };
|