mirror of
https://github.com/nextcloud/server.git
synced 2025-04-26 09:57:51 +00:00
17 lines
448 B
TypeScript
17 lines
448 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import type { Node } from '@nextcloud/files'
|
|
import type { TagWithId } from './types'
|
|
|
|
declare module '@nextcloud/event-bus' {
|
|
interface NextcloudEvents {
|
|
'systemtags:node:updated': Node
|
|
'systemtags:tag:deleted': TagWithId
|
|
'systemtags:tag:updated': TagWithId
|
|
'systemtags:tag:created': TagWithId
|
|
}
|
|
}
|
|
|
|
export {}
|