blob: 0fb337f4602f1dd312ee0512e83e3ea457e9a8c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace OCP\SpeechToText;
/**
* @since 28.0.0
*/
interface ISpeechToTextProviderWithId extends ISpeechToTextProvider {
/**
* @since 28.0.0
*/
public function getId(): string;
}
|