UNPKG

@omnia/fx-models

Version:
13 lines (12 loc) 464 B
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<AnimatedGifCommand> { } export interface AnimatedGifToolbarProperties extends ToolbarProperties<AnimatedGifCommand> { }