UNPKG

@heknon/node-webtop

Version:

A Backend for an unofficial WebTop (SmartSchool - Israel) API.

6 lines (5 loc) 514 B
import { AxiosInstance } from "axios"; import { Grades, GradeYear, GradeSemester } from "./DataObjects"; export declare const constructGradeSemester: (axios: AxiosInstance, studentYear: number, semester: number, onlyFilledGrades: boolean) => Promise<GradeSemester>; export declare const constructGradeYear: (axios: AxiosInstance, studentYear: number, onlyFilledGrades: boolean) => Promise<GradeYear>; export declare const constructGrades: (axios: AxiosInstance, onlyFilledGrades: boolean) => Promise<Grades>;