Added student status list query

This commit is contained in:
Keannu Christian Bernasol 2023-08-15 14:15:33 +08:00
parent cfd82d3c42
commit 146d80cc98
3 changed files with 46 additions and 5 deletions

View file

@ -1,4 +1,5 @@
import * as Location from "expo-location";
import { GetStudentStatus } from "../components/Api/Api";
export interface IconProps {
size: number;
@ -137,6 +138,9 @@ export interface StudentStatusType {
export type StudentStatusReturnType = [boolean, StudentStatusType];
export type StudentStatusListType = Array<StudentStatusType>;
export type StudentStatusListReturnType = [boolean, StudentStatusListType];
export type LocationType = Location.LocationObject;
export interface UserInfoType {