mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
20 lines
561 B
TypeScript
20 lines
561 B
TypeScript
import { defineOptionsMetadata, OptionsOfMetadata } from '@/components/define'
|
|
import { FollowingListID } from './types'
|
|
|
|
export const UnselectedListID: FollowingListID = -1
|
|
|
|
export const options = defineOptionsMetadata({
|
|
pinnedListID: {
|
|
defaultValue: UnselectedListID as FollowingListID,
|
|
displayName: '置顶列表 ID',
|
|
hidden: true,
|
|
},
|
|
hiddenListID: {
|
|
defaultValue: UnselectedListID as FollowingListID,
|
|
displayName: '隐藏列表 ID',
|
|
hidden: true,
|
|
},
|
|
})
|
|
|
|
export type ExtendFeedsLiveOptions = OptionsOfMetadata<typeof options>
|