Skip to content

Commit

Permalink
Fix more linting things
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Mezach <[email protected]>
  • Loading branch information
jmezach committed Jan 7, 2025
1 parent 67d412e commit 0f564a7
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Attachment>;
getAttachmentBuffer: (attachment: Attachment) => Promise<Buffer | undefined>;
deleteAttachment(attachment: Attachment): Promise<void>;
Expand Down

0 comments on commit 0f564a7

Please sign in to comment.