mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - databases
This commit is contained in:
13
resources/js/types/database.d.ts
vendored
Normal file
13
resources/js/types/database.d.ts
vendored
Normal 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;
|
||||
}
|
3
resources/js/types/index.d.ts
vendored
3
resources/js/types/index.d.ts
vendored
@ -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 {
|
||||
|
Reference in New Issue
Block a user