@nextcloud/files 3.0.0-beta.20 → 3.0.0-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,9 +45,9 @@ export interface Entry {
45
45
  /**
46
46
  * Function to be run after creation
47
47
  * @param {Folder} context the creation context. Usually the current folder
48
- * @param {string[]} fileList list of file names present in the destination folder
48
+ * @param {Node[]} content list of file/folders present in the context folder
49
49
  */
50
- handler: (context: Folder, fileList: string[]) => void;
50
+ handler: (context: Folder, content: Node[]) => void;
51
51
  }
52
52
  export declare class NewFileMenu {
53
53
  private _entries;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextcloud/files",
3
- "version": "3.0.0-beta.20",
3
+ "version": "3.0.0-beta.21",
4
4
  "description": "Nextcloud files utils",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",