mirror of
https://github.com/classchartsapi/classcharts-api-js.git
synced 2026-05-14 11:58:13 +00:00
feat: add getPupilFields
This commit is contained in:
parent
e2f3b21ee5
commit
a05b3ada93
2 changed files with 29 additions and 1 deletions
14
src/types.ts
14
src/types.ts
|
|
@ -464,4 +464,16 @@ export interface RewardPurchaseData {
|
|||
balence: number;
|
||||
}
|
||||
|
||||
export type RewardPurchaseResponse = ClassChartsResponse<RewardPurchaseData, []>;
|
||||
export type RewardPurchaseResponse = ClassChartsResponse<RewardPurchaseData, []>;
|
||||
|
||||
export interface PupilFieldsData {
|
||||
note: string;
|
||||
fields: {
|
||||
id: number;
|
||||
name: string;
|
||||
graphic: string;
|
||||
value: string;
|
||||
}[]
|
||||
}
|
||||
|
||||
export type PupilFieldsResponse = ClassChartsResponse<PupilFieldsData, []>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue