diff options
Diffstat (limited to 'apps/files_sharing/src/sharing.d.ts')
-rw-r--r-- | apps/files_sharing/src/sharing.d.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/files_sharing/src/sharing.d.ts b/apps/files_sharing/src/sharing.d.ts new file mode 100644 index 00000000000..5c1a211f346 --- /dev/null +++ b/apps/files_sharing/src/sharing.d.ts @@ -0,0 +1,10 @@ +/** + * 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 +} |