mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 12:23:33 -06:00
10 lines
525 B
TypeScript
10 lines
525 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { CandidateResponse } from "./CandidateResponse";
|
|
import type { InstructorDetail } from "./InstructorDetail";
|
|
import type { LinkedRmpProfile } from "./LinkedRmpProfile";
|
|
|
|
/**
|
|
* Response for `GET /api/admin/instructors/{id}` and `POST .../match`.
|
|
*/
|
|
export type InstructorDetailResponse = { instructor: InstructorDetail, currentMatches: Array<LinkedRmpProfile>, candidates: Array<CandidateResponse>, };
|