#591 - databases

This commit is contained in:
Saeed Vaziry
2025-05-20 17:35:20 +02:00
parent eb86204069
commit 2850c1fa59
30 changed files with 940 additions and 284 deletions

13
resources/js/types/database.d.ts vendored Normal file
View File

@ -0,0 +1,13 @@
export interface Database {
id: number;
server_id: number;
name: string;
collation: string;
charset: string;
status: string;
status_color: string;
created_at: string;
updated_at: string;
[key: string]: unknown;
}

View File

@ -23,9 +23,10 @@ export interface NavGroup {
export interface NavItem {
title: string;
href: string;
activePath?: string;
onlyActivePath?: string;
icon?: LucideIcon | null;
isActive?: boolean;
children?: NavItem[];
}
export interface Configs {