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