Skip to content
Open
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
2 changes: 1 addition & 1 deletion apps/image-editor/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ declare namespace tuiImageEditor {
public setObjectPosition(id: number, posInfo?: IPositionConfig): Promise<void>;
public setObjectProperties(id: number, keyValue?: IGraphicObjectProps): Promise<void>;
public setObjectPropertiesQuietly(id: number, keyValue?: IGraphicObjectProps): Promise<void>;
public startDrawingMode(mode: string, option?: { width?: number; color?: string }): boolean;
public startDrawingMode(mode: 'CROPPER' | 'FREE_DRAWING' | 'LINE_DRAWING' | 'TEXT' | 'SHAPE', option?: { width?: number; color?: string }): boolean;
public stopDrawingMode(): void;
public toDataURL(options?: IToDataURLOptions): string;
public undo(iterationCount: number): Promise<any>;
Expand Down