1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

style: prettier and eslint

This commit is contained in:
James Cook 2022-03-12 11:37:28 +00:00
parent e1ac2b1364
commit efba7086ea
8 changed files with 33 additions and 2803 deletions

View file

@ -1,22 +1,6 @@
import Undici from "undici";
import { RequestOptions } from "undici/types/dispatcher";
import {
ActivityResponse,
AnnouncementsResponse,
BadgesResponse,
BehaviourResponse,
DetentionsResponse,
GetActivityOptions,
GetBehaviourOptions,
GetHomeworkOptions,
GetLessonsOptions,
Homework,
HomeworksResponse,
LessonsResponse,
Student,
} from "./types";
import { API_BASE_STUDENT, BASE_URL } from "./consts";
import {ClasschartsClient} from "./client"
import { ClasschartsClient } from "./client";
/**
* The base client
*/
@ -31,7 +15,7 @@ export class ClasschartsStudentClient extends ClasschartsClient {
* @param dateOfBirth Student's date of birth
*/
constructor(studentCode: string, dateOfBirth?: string) {
super(API_BASE_STUDENT)
super(API_BASE_STUDENT);
this.studentCode = String(studentCode);
this.dateOfBirth = String(dateOfBirth);
}