mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
projects
This commit is contained in:
2
resources/js/types/index.d.ts
vendored
2
resources/js/types/index.d.ts
vendored
@ -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;
|
||||
|
5
resources/js/types/project.d.ts
vendored
5
resources/js/types/project.d.ts
vendored
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user