Bilibili-Evolved/registry/lib/components/style/home-redesign/fresh/layouts/fresh-layout-item.ts
2023-05-30 09:10:16 +08:00

12 lines
277 B
TypeScript

import { Executable, VueModule, WithName } from '@/core/common-types'
export interface FreshLayoutItem extends WithName {
component: Executable<VueModule>
grow?: boolean
}
export interface FreshLayoutItemSettings {
linebreak: boolean
order: number
hidden: boolean
}