From 0f564a7b81cb53b80a7e94b5344382e8bd45cfe5 Mon Sep 17 00:00:00 2001 From: Jonathan Mezach Date: Tue, 7 Jan 2025 13:22:02 +0100 Subject: [PATCH] Fix more linting things Signed-off-by: Jonathan Mezach --- .../src/service/upload/attachmentStorageEngine.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/qeta-backend/src/service/upload/attachmentStorageEngine.ts b/plugins/qeta-backend/src/service/upload/attachmentStorageEngine.ts index 69fa4e1..9acc035 100644 --- a/plugins/qeta-backend/src/service/upload/attachmentStorageEngine.ts +++ b/plugins/qeta-backend/src/service/upload/attachmentStorageEngine.ts @@ -11,7 +11,12 @@ export type AttachmentStorageEngineOptions = { export interface AttachmentStorageEngine { handleFile: ( file: File, - options?: { creator: string, postId?: number; answerId?: number; collectionId?: number }, + options?: { + creator: string; + postId?: number; + answerId?: number; + collectionId?: number; + }, ) => Promise; getAttachmentBuffer: (attachment: Attachment) => Promise; deleteAttachment(attachment: Attachment): Promise;