diff options
Diffstat (limited to 'apps/files_sharing/src/eventbus.d.ts')
-rw-r--r-- | apps/files_sharing/src/eventbus.d.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files_sharing/src/eventbus.d.ts b/apps/files_sharing/src/eventbus.d.ts new file mode 100644 index 00000000000..cc10ff8468f --- /dev/null +++ b/apps/files_sharing/src/eventbus.d.ts @@ -0,0 +1,15 @@ +/** + * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +import type { Folder, Node } from '@nextcloud/files' + +declare module '@nextcloud/event-bus' { + export interface NextcloudEvents { + // mapping of 'event name' => 'event type' + 'files:list:updated': { folder: Folder, contents: Node[] } + 'files:config:updated': { key: string, value: boolean } + } +} + +export {} |