@any-listen/extension-kit 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/app/api.d.ts +3 -2
package/package.json
CHANGED
package/types/app/api.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ declare namespace AnyListen {
|
|
|
89
89
|
|
|
90
90
|
namespace Music {
|
|
91
91
|
type Source = string
|
|
92
|
-
type Quality = '128k' | '320k' | 'flac' | 'flac24bit' | '192k' | 'wav' | '
|
|
92
|
+
type Quality = '128k' | '320k' | 'flac' | 'flac24bit' | '192k' | 'wav' | 'dolby' | 'master'
|
|
93
93
|
type FileType = 'mp3' | 'flac' | 'wav' | 'm4a'
|
|
94
94
|
|
|
95
95
|
type MusicQualityType = Partial<
|
|
@@ -766,7 +766,7 @@ declare global {
|
|
|
766
766
|
type Platform = 'mac' | 'linux' | 'windows' | 'android' | 'ios'
|
|
767
767
|
type Architecture = 'arm' | 'arm64' | 'x86' | 'x64'
|
|
768
768
|
type ClientType = 'desktop' | 'web' | 'mobile'
|
|
769
|
-
type Quality =
|
|
769
|
+
type Quality = AnyListen.Music.Quality
|
|
770
770
|
type MusicInfo = AnyListen.Music.MusicInfo
|
|
771
771
|
type MusicInfoOnline = AnyListen.Music.MusicInfoOnline
|
|
772
772
|
type SongListItem = AnyListen.Resource.SongListItem
|
|
@@ -801,6 +801,7 @@ declare global {
|
|
|
801
801
|
headers: Record<string, string | string[] | undefined>
|
|
802
802
|
raw: Uint8Array
|
|
803
803
|
body: Resp
|
|
804
|
+
history: string[]
|
|
804
805
|
}
|
|
805
806
|
|
|
806
807
|
type ConverterFormatFrom = 'base64' | 'hex' | 'utf-8'
|