26 lines
478 B
PHP
26 lines
478 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
/**
|
|
* @psalm-type RecommendationsRecommendedFile = array{
|
|
* id: string,
|
|
* timestamp: int,
|
|
* name: string,
|
|
* directory: string,
|
|
* extension: string,
|
|
* mimeType: string,
|
|
* hasPreview: bool,
|
|
* reason: string,
|
|
* }
|
|
*
|
|
* @psalm-suppress UnusedClass
|
|
*/
|
|
class ResponseDefinitions {
|
|
}
|