aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/eventbus.d.ts
blob: 8d57d82c034dc10d5c75e2d9ad298539ad74e388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
import type { Node } from '@nextcloud/files'

declare module '@nextcloud/event-bus' {
	export interface NextcloudEvents {
		// mapping of 'event name' => 'event type'
		'files:favorites:removed': Node
		'files:favorites:added': Node
		'files:node:renamed': Node
	}
}

export {}