1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-10 00:05:24 +02:00

style(env): delete unused types

This commit is contained in:
Chaim Lev-Ari 2024-06-12 15:55:27 +03:00
parent 051f44232b
commit 26a6d67073

View file

@ -1,20 +0,0 @@
import { TagId } from '@/portainer/tags/types';
import { EdgeAsyncIntervalsValues } from '@/react/edge/components/EdgeAsyncIntervalsForm';
import { TLSConfig } from '@@/TLSFieldset/types';
import { EnvironmentGroupId } from '../../environment-groups/types';
export interface FormValues {
name: string;
url: string;
publicUrl: string;
tlsConfig: TLSConfig;
meta: {
tagIds: TagId[];
groupId: EnvironmentGroupId;
};
edge: {
checkInInterval: number;
} & EdgeAsyncIntervalsValues;
}