mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
import type { Component } from 'vue'
|
|
import type { WithName } from '@/core/common-types'
|
|
|
|
export interface FreshLayoutItem extends WithName {
|
|
component: Component
|
|
grow?: boolean
|
|
}
|
|
export interface FreshLayoutItemSettings {
|
|
linebreak: boolean
|
|
order: number
|
|
hidden: boolean
|
|
}
|