mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import type { GetTranscript } from "./GetTranscript";
|
|
|
|
export type Page_GetTranscript_ = {
|
|
items: Array<GetTranscript>;
|
|
total: number;
|
|
page: number | null;
|
|
size: number | null;
|
|
pages?: number | null;
|
|
};
|