13 lines
291 B
PHP
13 lines
291 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Richdocuments\TaskProcessing\Presentation;
|
|
|
|
interface ISlide {
|
|
public function getPosition(): int;
|
|
public function getSlideCommands(): array;
|
|
}
|