Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/newFileMenu.ts
Original file line number Diff line number Diff line change
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