Bilibili-Evolved/registry/lib/components/style/home-redesign/fresh/layouts/fresh-layout-item.ts
2023-04-19 21:58:30 +08:00

11 lines
259 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
}