mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 14:23:36 -06:00
13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { TimelineSlot } from "./TimelineSlot";
|
|
|
|
export type TimelineResponse = {
|
|
/**
|
|
* 15-minute slots with per-subject enrollment totals, sorted by time.
|
|
*/
|
|
slots: Array<TimelineSlot>,
|
|
/**
|
|
* All subject codes present in the returned data.
|
|
*/
|
|
subjects: Array<string>, };
|