Skip to content

Commit

Permalink
Merge pull request #753 from nextcloud-libraries/fix/newFIleMenu
Browse files Browse the repository at this point in the history
  • Loading branch information
juliushaertl committed Aug 30, 2023
2 parents 7a543c2 + 6042efe commit ce80a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/newFileMenu.ts
Expand Up @@ -48,9 +48,9 @@ export interface Entry {
/**
* Function to be run after creation
* @param {Folder} context the creation context. Usually the current folder
* @param {string[]} fileList list of file names present in the destination folder
* @param {Node[]} content list of file/folders present in the context folder
*/
handler: (context: Folder, fileList: string[]) => void
handler: (context: Folder, content: Node[]) => void
}

export class NewFileMenu {
Expand Down

0 comments on commit ce80a54

Please sign in to comment.