mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-07-03 08:32:10 +08:00
23 lines
293 B
TypeScript
23 lines
293 B
TypeScript
|
|
interface InitState {
|
|
list: LX.UserApi.UserApiInfo[]
|
|
status: {
|
|
status: boolean
|
|
message?: string
|
|
}
|
|
apis: Partial<LX.UserApi.UserApiSources>
|
|
}
|
|
const state: InitState = {
|
|
list: [],
|
|
status: {
|
|
status: false,
|
|
message: 'initing',
|
|
},
|
|
apis: {},
|
|
}
|
|
|
|
|
|
export {
|
|
state,
|
|
}
|