mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-17 21:12:14 +01:00
12 lines
295 B
PHP
12 lines
295 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Richdocuments\TaskProcessing\Presentation;
|
|
|
|
interface ISlide {
|
|
public function getPosition(): int;
|
|
public function getSlideCommands(): array;
|
|
}
|