group TS interfaces to avoid redundancy
This commit is contained in:
@@ -1,24 +1,5 @@
|
||||
import { createContext } from "react";
|
||||
|
||||
|
||||
export interface Task {
|
||||
id: number;
|
||||
title?: string;
|
||||
completed?: boolean;
|
||||
[key: string]: unknown;
|
||||
}
|
||||
|
||||
export interface User {
|
||||
id: number
|
||||
name: string;
|
||||
lastname: string;
|
||||
role: string;
|
||||
email: string;
|
||||
phone: string | null;
|
||||
created_at: string;
|
||||
profile_photo_path?: string | null;
|
||||
tasks: Task[];
|
||||
}
|
||||
import User from "./../../interfaces/user.interface"
|
||||
|
||||
export interface AuthContextType {
|
||||
user: User | null;
|
||||
|
||||
Reference in New Issue
Block a user