/** * Myext background scripts message connection types "enum" * * Copyright (C) 2021 Wojtek Kosior * Redistribution terms are gathered in the `copyright' file. */ "use strict"; /* * Those need to be strings so they can be used as 'name' parameter * to browser.runtime.connect() */ (() => { const CONNECTION_TYPE = { REMOTE_STORAGE : "0", PAGE_ACTIONS : "1" }; window.CONNECTION_TYPE = CONNECTION_TYPE; })();