From 5c8541e65d1b376af309d8517e6675dc1c5f8017 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sun, 12 Apr 2020 20:33:44 +0200 Subject: [PATCH] changed imageUploadType to an UnionType of all the possible uploadTypes Signed-off-by: Philip Molares Signed-off-by: David Mehren --- lib/config/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/interfaces.ts b/lib/config/interfaces.ts index a747ec241..d01f8a197 100644 --- a/lib/config/interfaces.ts +++ b/lib/config/interfaces.ts @@ -65,7 +65,7 @@ export interface Config { heartbeatTimeout: number; tooBusyLag: number; documentMaxLength: number; - imageUploadType: string; + imageUploadType: 'azure' | 'filesystem' | 'imgur' | 'lutim' | 'minio' | 's3'; lutim?: { url: string; };