17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
|
import { makeGetRequest, makePostRequest } from "./api";
|
||
|
|
||
|
export type Session = {
|
||
|
id: number;
|
||
|
right: number;
|
||
|
wrong: number;
|
||
|
total: number;
|
||
|
// user: string;
|
||
|
}
|
||
|
|
||
|
export const getSession = async (id: number): Promise<Session> => {
|
||
|
return makeGetRequest( `sessions/${id}/` );
|
||
|
}
|
||
|
|
||
|
export const postSession = async (session: Session): Promise<Session> => {
|
||
|
return makePostRequest( `sessions`, session );
|
||
|
}
|