fix build
This commit is contained in:
parent
d0c1484136
commit
24150f36d5
1 changed files with 4 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import api from '../api';
|
||||
import type { VoiceOption } from './voiceCatalogApi';
|
||||
|
||||
// ============================================================================
|
||||
// TYPES & INTERFACES
|
||||
|
|
@ -102,10 +103,11 @@ export interface ConfigUpdateRequest {
|
|||
debugMode?: boolean;
|
||||
}
|
||||
|
||||
// Voice option type re-exported from the central voice catalog API.
|
||||
// Voice option type re-exported from the central voice catalog API
|
||||
// (imported above so it's also in scope for local signatures below).
|
||||
// The legacy teamsbot-specific {code,name} language type is gone — consumers
|
||||
// should use VoiceLanguage from voiceCatalogApi (catalog SSOT).
|
||||
export type { VoiceOption } from './voiceCatalogApi';
|
||||
export type { VoiceOption };
|
||||
|
||||
// Auth Detection Test Types
|
||||
export interface StepScreenshot {
|
||||
|
|
|
|||
Loading…
Reference in a new issue