From 2f4122905d68b9c24f9e27e22ea5746f728d18dc Mon Sep 17 00:00:00 2001 From: fflorent Date: Tue, 2 Apr 2024 09:05:13 +0200 Subject: [PATCH] Remove useless export --- app/server/lib/MinIOExternalStorage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/lib/MinIOExternalStorage.ts b/app/server/lib/MinIOExternalStorage.ts index 9179be64..e341d158 100644 --- a/app/server/lib/MinIOExternalStorage.ts +++ b/app/server/lib/MinIOExternalStorage.ts @@ -7,7 +7,7 @@ import * as minio from 'minio'; // The minio typings appear to be quite stale. Extend them here to avoid // lots of casts to any. -export type MinIOClient = minio.Client & { +type MinIOClient = minio.Client & { statObject(bucket: string, key: string, options: {versionId?: string}): Promise; getObject(bucket: string, key: string, options: {versionId?: string}): Promise; listObjects(bucket: string, key: string, recursive: boolean,