chore: add ts-rs generated bindings

This commit is contained in:
2026-01-30 21:29:32 -06:00
parent dd148e08a0
commit 2df0ba0ec5
30 changed files with 159 additions and 3 deletions
@@ -0,0 +1,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { InstructorListItem } from "./InstructorListItem";
import type { InstructorStats } from "./InstructorStats";
/**
* Response for `GET /api/admin/instructors`.
*/
export type ListInstructorsResponse = { instructors: Array<InstructorListItem>, total: number, page: number, perPage: number, stats: InstructorStats, };