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