@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.
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/newFileMenu.d.ts +2 -2
- package/package.json +1 -1
package/dist/newFileMenu.d.ts
CHANGED
|
@@ -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 {
|
|
48
|
+
* @param {Node[]} content list of file/folders present in the context folder
|
|
49
49
|
*/
|
|
50
|
-
handler: (context: Folder,
|
|
50
|
+
handler: (context: Folder, content: Node[]) => void;
|
|
51
51
|
}
|
|
52
52
|
export declare class NewFileMenu {
|
|
53
53
|
private _entries;
|