adnbn
Version: 
Addon Bone - Cross-browser web extension framework with shared code base
15 lines • 357 B
JavaScript
import {
  CommandExecuteActionName
} from "./../types/command.js";
const defineCommand = (options) => {
  return options;
};
const defineExecuteActionCommand = (options) => {
  return { ...options, name: CommandExecuteActionName };
};
export {
  CommandExecuteActionName,
  defineCommand,
  defineExecuteActionCommand
};
//# sourceMappingURL=command.js.map