Improved typing and quality of applications.ts

This commit is contained in:
dominicbachmann
2022-04-05 20:48:33 +02:00
parent 8fb5260809
commit 9fdac2741a
2 changed files with 105 additions and 73 deletions

View File

@@ -17,10 +17,10 @@ export type BuilderJob = {
startCommand?: string;
baseDirectory: string;
publishDirectory: string;
phpModules: unknown; // probably an array of some type;
pythonWSGI: unknown; // probably a string?;
pythonModule: unknown; // probably a string?;
pythonVariable: unknown; // probably a string?;
phpModules: string;
pythonWSGI: string;
pythonModule: string;
pythonVariable: string;
createdAt: string;
updatedAt: string;
destinationDockerId: string;