import { ToolbarProperties } from "./ToolbarProperties"; import { EditorCommand } from "./EditorCommand"; import { EditorMenuBar } from "./EditorMenuBar"; export interface AnimatedGifCommand extends EditorCommand { animatedGif?: (option: { gifUrl: string; }) => void; } export interface AnimatedGifMenuBar extends EditorMenuBar { } export interface AnimatedGifToolbarProperties extends ToolbarProperties { }