@atlaskit/editor-plugin-user-intent
Version:
UserIntent plugin for @atlaskit/editor-core
19 lines (18 loc) • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.setCurrentUserIntent = void 0;
var _main = require("../pm-plugins/main");
var setCurrentUserIntent = exports.setCurrentUserIntent = function setCurrentUserIntent(currentUserIntent) {
return function (_ref) {
var tr = _ref.tr;
tr.setMeta(_main.userIntentPluginKey, {
type: 'setCurrentUserIntent',
data: {
currentUserIntent: currentUserIntent
}
});
return tr;
};
};