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