mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 14:31:31 +01:00
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare module 'vscode' {
|
|
|
|
export interface SpeechToTextOptions {
|
|
readonly language?: string;
|
|
}
|
|
|
|
export enum SpeechToTextStatus {
|
|
Started = 1,
|
|
Recognizing = 2,
|
|
Recognized = 3,
|
|
Stopped = 4,
|
|
Error = 5
|
|
}
|
|
|
|
export interface SpeechToTextEvent {
|
|
readonly status: SpeechToTextStatus;
|
|
readonly text?: string;
|
|
}
|
|
|
|
export interface SpeechToTextSession {
|
|
readonly onDidChange: Event<SpeechToTextEvent>;
|
|
}
|
|
|
|
export interface TextToSpeechOptions {
|
|
readonly language?: string;
|
|
}
|
|
|
|
export enum TextToSpeechStatus {
|
|
Started = 1,
|
|
Stopped = 2,
|
|
Error = 3
|
|
}
|
|
|
|
export interface TextToSpeechEvent {
|
|
readonly status: TextToSpeechStatus;
|
|
readonly text?: string;
|
|
}
|
|
|
|
export interface TextToSpeechSession {
|
|
readonly onDidChange: Event<TextToSpeechEvent>;
|
|
|
|
synthesize(text: string): void;
|
|
}
|
|
|
|
export enum KeywordRecognitionStatus {
|
|
Recognized = 1,
|
|
Stopped = 2
|
|
}
|
|
|
|
export interface KeywordRecognitionEvent {
|
|
readonly status: KeywordRecognitionStatus;
|
|
readonly text?: string;
|
|
}
|
|
|
|
export interface KeywordRecognitionSession {
|
|
readonly onDidChange: Event<KeywordRecognitionEvent>;
|
|
}
|
|
|
|
export interface SpeechProvider {
|
|
provideSpeechToTextSession(token: CancellationToken, options?: SpeechToTextOptions): ProviderResult<SpeechToTextSession>;
|
|
provideTextToSpeechSession(token: CancellationToken, options?: TextToSpeechOptions): ProviderResult<TextToSpeechSession>;
|
|
provideKeywordRecognitionSession(token: CancellationToken): ProviderResult<KeywordRecognitionSession>;
|
|
}
|
|
|
|
export namespace speech {
|
|
|
|
export function registerSpeechProvider(id: string, provider: SpeechProvider): Disposable;
|
|
}
|
|
}
|