MCPcopy
hub / github.com/antvis/Infographic / DesignOptions

Interface DesignOptions

src/designs/types.ts:6–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { TitleOptions } from './title';
5
6export 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
17export interface ParsedDesignsOptions {
18 structure: WithProps<Structure>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected