forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ツールチップが手前に来るようにする (VOICEVOX#896) * 使い方更新 * 辞書UIのマージンを調整 * update openapi.json * 更新情報更新 * ダークモード→ダークテーマ * 更新情報更新 * アプデのアプデ * 空行 * build.ymlのバージョン更新
- Loading branch information
Showing
34 changed files
with
244 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* VOICEVOX ENGINE | ||
* VOICEVOXの音声合成エンジンです。 | ||
* | ||
* The version of the OpenAPI document: 0.13.0 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { exists, mapValues } from '../runtime'; | ||
import { | ||
Speaker, | ||
SpeakerFromJSON, | ||
SpeakerFromJSONTyped, | ||
SpeakerToJSON, | ||
SpeakerInfo, | ||
SpeakerInfoFromJSON, | ||
SpeakerInfoFromJSONTyped, | ||
SpeakerInfoToJSON, | ||
} from './'; | ||
|
||
/** | ||
* ダウンロード可能な音声ライブラリの情報(最新情報をwebで取得することを考慮して、ローカルの情報はない) | ||
* @export | ||
* @interface DownloadableLibrary | ||
*/ | ||
export interface DownloadableLibrary { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof DownloadableLibrary | ||
*/ | ||
downloadUrl: string; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof DownloadableLibrary | ||
*/ | ||
bytes: number; | ||
/** | ||
* | ||
* @type {Speaker} | ||
* @memberof DownloadableLibrary | ||
*/ | ||
speaker: Speaker | null; | ||
/** | ||
* | ||
* @type {SpeakerInfo} | ||
* @memberof DownloadableLibrary | ||
*/ | ||
speakerInfo: SpeakerInfo | null; | ||
} | ||
|
||
export function DownloadableLibraryFromJSON(json: any): DownloadableLibrary { | ||
return DownloadableLibraryFromJSONTyped(json, false); | ||
} | ||
|
||
export function DownloadableLibraryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadableLibrary { | ||
if ((json === undefined) || (json === null)) { | ||
return json; | ||
} | ||
return { | ||
|
||
'downloadUrl': json['download_url'], | ||
'bytes': json['bytes'], | ||
'speaker': SpeakerFromJSON(json['speaker']), | ||
'speakerInfo': SpeakerInfoFromJSON(json['speaker_info']), | ||
}; | ||
} | ||
|
||
export function DownloadableLibraryToJSON(value?: DownloadableLibrary | null): any { | ||
if (value === undefined) { | ||
return undefined; | ||
} | ||
if (value === null) { | ||
return null; | ||
} | ||
return { | ||
|
||
'download_url': value.downloadUrl, | ||
'bytes': value.bytes, | ||
'speaker': SpeakerToJSON(value.speaker), | ||
'speaker_info': SpeakerInfoToJSON(value.speakerInfo), | ||
}; | ||
} | ||
|
Oops, something went wrong.