@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
17 lines (16 loc) • 417 B
TypeScript
declare const command: {
name: string;
/**
* flip an image
* @param {Graphics} graphics - Graphics instance
* @param {string} type - 'flipX' or 'flipY' or 'reset'
* @returns {Promise}
*/
execute(graphics: any, type: any): any;
/**
* @param {Graphics} graphics - Graphics instance
* @returns {Promise}
*/
undo(graphics: any): any;
};
export default command;