mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 03:50:37 -05:00
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;
|
||
|
|
}
|