system-praktyk-front/src/state/actions/student.ts
2020-09-27 22:06:53 +02:00

14 lines
282 B
TypeScript

import { Action } from "@/state/actions/base";
import { Student } from "@/data";
export enum StudentActions {
Set = 'SET_STUDENT',
}
export interface SetStudentAction extends Action<StudentActions.Set> {
student: Student,
}
export type StudentAction = SetStudentAction;