@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
13 lines (12 loc) • 464 B
TypeScript
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> {
}