Skip to content

Commit

Permalink
chore: update multer options to accept functions as dest
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Aug 18, 2023
1 parent 500df55 commit 3b239f2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**
* @see https://github.com/expressjs/multer
*
*
* @publicApi
*/
export interface MulterOptions {
dest?: string;
dest?: string | Function;
/** The storage engine to use for uploaded files. */
storage?: any;
/**
Expand Down

0 comments on commit 3b239f2

Please sign in to comment.