This commit is contained in:
Saeed Vaziry
2025-06-01 11:31:09 +02:00
parent 41388dafbf
commit 84476db764
23 changed files with 1517 additions and 1776 deletions

View File

@ -26,7 +26,7 @@ export interface NavItem {
title: string;
href: string;
onlyActivePath?: string;
icon?: LucideIcon | null;
icon?: LucideIcon | string | null;
isActive?: boolean;
isDisabled?: boolean;
children?: NavItem[];
@ -68,6 +68,7 @@ export interface Configs {
[key: string]: string;
};
metrics_periods: string[];
php_extensions: string[];
[key: string]: unknown;
}

View File

@ -2,7 +2,10 @@ export interface Service {
id: number;
server_id: number;
type: string;
type_data: unknown;
type_data: {
extensions?: string[];
[key: string]: unknown;
};
name: string;
version: string;
unit: number;