aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/eventbus.d.ts
blob: 4fac9bc784148d991bab0d8b5fee95fb3d45e755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

declare module '@nextcloud/event-bus' {
	export interface NextcloudEvents {
		// mapping of 'event name' => 'event type'
		'nextcloud:unified-search:reset': undefined
		'nextcloud:unified-search:search': { query: string }
	}
}

export {}