| 4 | import { TitleOptions } from './title'; |
| 5 | |
| 6 | export interface DesignOptions { |
| 7 | /** 结构 */ |
| 8 | structure?: string | WithType<StructureOptions>; |
| 9 | /** 标题 */ |
| 10 | title?: string | WithType<TitleOptions>; |
| 11 | /** 数据项 */ |
| 12 | item?: string | WithType<ItemOptions>; |
| 13 | /** 针对层级布局,不同层级使用不同 item */ |
| 14 | items?: (string | WithType<ItemOptions>)[]; |
| 15 | } |
| 16 | |
| 17 | export interface ParsedDesignsOptions { |
| 18 | structure: WithProps<Structure>; |
nothing calls this directly
no outgoing calls
no test coverage detected