mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
cc1686dba9
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
21 lines
386 B
PHP
21 lines
386 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Theming;
|
|
|
|
/**
|
|
* @psalm-type ThemingBackground = array{
|
|
* backgroundImage: ?string,
|
|
* backgroundColor: string,
|
|
* primaryColor: string,
|
|
* version: int,
|
|
* }
|
|
*/
|
|
class ResponseDefinitions {
|
|
}
|