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

11 lines
261 B
TypeScript

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