Outlook_Addin_LLM/node_modules/@fluentui/utilities/lib/dom/on.js

5 lines
246 B
JavaScript
Raw Normal View History

export function on(element, eventName, callback, options) {
element.addEventListener(eventName, callback, options);
return function () { return element.removeEventListener(eventName, callback, options); };
}
//# sourceMappingURL=on.js.map