mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
/** 收藏夹信息, 供`FavoritesFolderSelect.vue`使用 */
|
|
export interface FavoritesFolder {
|
|
id: number
|
|
/** 名称 */
|
|
name: string
|
|
/** 视频数量 */
|
|
count: number
|
|
}
|
|
/** 未选择时的初始状态 */
|
|
export const notSelectedFolder: FavoritesFolder = {
|
|
id: 0,
|
|
name: '加载中...',
|
|
count: 0,
|
|
}
|