This commit is contained in:
Saeed Vaziry
2025-05-15 14:23:26 +03:00
parent a81e9b18b7
commit b8ba83949b
47 changed files with 1536 additions and 980 deletions

View File

@ -1,6 +1,8 @@
import { LucideIcon } from 'lucide-react';
import type { Config } from 'ziggy-js';
import type { Server } from '@/types/server';
import { Project } from '@/types/project';
import { User } from '@/types/user';
export interface Auth {
user: User;

View File

@ -1,7 +1,12 @@
import { User } from '@/types/user';
export interface Project {
id: number;
name: string;
users: User[];
created_at: string;
updated_at: string;
created_at_by_timezone: string;
updated_at_by_timezone: string;
[key: string]: unknown;
}