mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
this allows AppAPI to register anonymous classes as SpeechToText providers Signed-off-by: Marcel Klehr <mklehr@gmx.net>
15 lines
196 B
PHP
15 lines
196 B
PHP
<?php
|
|
|
|
namespace OCP\SpeechToText;
|
|
|
|
/**
|
|
* @since 28.0.0
|
|
*/
|
|
interface ISpeechToTextProviderWithId extends ISpeechToTextProvider {
|
|
|
|
/**
|
|
* @since 28.0.0
|
|
*/
|
|
public function getId(): string;
|
|
}
|