import { IUser } from "./user"; export interface IAuth { token?: string | null; my_permissions?: [] | string; isAuthenticated?: boolean; isLoading?: boolean; user?: IUser | null; errors?: {}; }