mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - tags
This commit is contained in:
1
resources/js/types/index.d.ts
vendored
1
resources/js/types/index.d.ts
vendored
@ -49,6 +49,7 @@ export interface Configs {
|
||||
service_versions: {
|
||||
[service: string]: string[];
|
||||
};
|
||||
colors: string[];
|
||||
webservers: string[];
|
||||
databases: string[];
|
||||
php_versions: string[];
|
||||
|
10
resources/js/types/tag.d.ts
vendored
Normal file
10
resources/js/types/tag.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
export interface Tag {
|
||||
id: number;
|
||||
project_id: number;
|
||||
name: string;
|
||||
color: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
|
||||
[key: string]: unknown;
|
||||
}
|
Reference in New Issue
Block a user