mirror of
https://github.com/nextcloud/server.git
synced 2026-02-22 17:31:10 -05:00
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
14 lines
367 B
TypeScript
14 lines
367 B
TypeScript
/**
|
|
* 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 {}
|