diff --git a/apps/image-editor/index.d.ts b/apps/image-editor/index.d.ts index ee26182c2..472ad98f4 100644 --- a/apps/image-editor/index.d.ts +++ b/apps/image-editor/index.d.ts @@ -190,9 +190,15 @@ declare namespace tuiImageEditor { rotatingPointOffset?: number; } + interface IShapeFillOption { + type: 'color' | 'filter' + filter?: Array> + color?: string + } + interface IObjectProps { // icon, shape - fill: string; + fill: string | IShapeFillOption; height: number; id: number; left: number;