Source: index.js

/** @global */
global.QuillMentions = require("./mentions");
if (window.Quill) {
    Quill.registerModule('mentions', QuillMentions);
}
else {
    throw new Error("Quill is not defined in the global scope.");
}