mirror of
https://github.com/nextcloud/server.git
synced 2025-05-03 21:40:31 +00:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
export type ShareAttribute = {
|
|
value: boolean|string|number|null|object|Array<unknown>
|
|
key: string
|
|
scope: string
|
|
}
|