aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/lib/ResponseDefinitions.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/lib/ResponseDefinitions.php')
-rw-r--r--apps/theming/lib/ResponseDefinitions.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/theming/lib/ResponseDefinitions.php b/apps/theming/lib/ResponseDefinitions.php
new file mode 100644
index 00000000000..948fc792133
--- /dev/null
+++ b/apps/theming/lib/ResponseDefinitions.php
@@ -0,0 +1,21 @@
+<?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 {
+}