Bilibili-Evolved/registry/lib/components/style/home-redesign/fresh/layouts/fresh-layout-item.ts
2021-12-17 08:56:16 +08:00

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