@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
18 lines (17 loc) • 448 B
TypeScript
declare const command: {
name: string;
/**
* Change a text
* @param {Graphics} graphics - Graphics instance
* @param {number} id - object id
* @param {string} text - Changing text
* @returns {Promise}
*/
execute(graphics: any, id: any, text: any): any;
/**
* @param {Graphics} graphics - Graphics instance
* @returns {Promise}
*/
undo(graphics: any): any;
};
export default command;