mirror of
https://github.com/nextcloud/server.git
synced 2025-05-17 03:32:35 +00:00

Nevertheless this causes a huge amount of new warnings. Previously the shell script for directories to lint was wrong it was generating all app names to lint, but was missing the `apps/` prefix. Causing only `core` to be linted. Co-authored-by: Grigorii K. Shartsev <me@shgk.me> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
export interface FileAttributes {
|
|
[key: string]: unknown
|
|
id: number
|
|
name: string
|
|
}
|