Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/vrender-core/src/interface/graphic/creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { IImageAttribute, IImageGraphicAttribute } from './image';
import type { IIsogonAttribute } from './isogon';
import type { ILineAttribute, ILineGraphicAttribute } from './line';
import type { IPathAttribute, IPathGraphicAttribute } from './path';
import type { IPolygonAttribute } from './polygon';
import type { IPolygonAttribute, IPolygonGraphicAttribute } from './polygon';
import type { IRectAttribute, IRectGraphicAttribute } from './rect';
import type { IRichTextAttribute, IRichTextGraphicAttribute } from './richText';
import type { ISvgAttribute } from './svg';
Expand Down Expand Up @@ -68,6 +68,7 @@ export interface GraphicAttributeMap {
readonly text: ITextGraphicAttribute;
readonly richtext: IRichTextGraphicAttribute;
readonly wrapText: IWrapTextGraphicAttribute;
readonly polygon: IPolygonGraphicAttribute;
}

// export declare function createArc(params: Partial<IArcAttribute & IGraphicAttribute>): IArc;
Expand Down
Loading