Added typings for database/destinations

This commit is contained in:
dominicbachmann
2022-04-06 19:34:17 +02:00
parent 82f7633c3a
commit faeae8fd6c
3 changed files with 79 additions and 61 deletions

View File

@@ -0,0 +1,8 @@
export type CreateDockerDestination = {
name: string;
engine: string;
remoteEngine: boolean;
network: string;
isCoolifyProxyUsed: boolean;
teamId: string;
};