123456789101112131415161718192021222324252627282930313233 |
- <?php
- declare(strict_types=1);
- namespace OCP\Files\Template;
- use OCP\Files\File;
- interface ICustomTemplateProvider {
-
- public function getCustomTemplates(string $mimetype): array;
-
- public function getCustomTemplate(string $template): File;
- }
|