(width, height)
| 19 | return CACHED.configSize; |
| 20 | }; |
| 21 | const setConfigSize = async (width, height) => { |
| 22 | const { Storage } = await import("./helpers/utils.js"); |
| 23 | CACHED.configSize = [width, height]; |
| 24 | return Storage.set(MagnifySizeKey, width + "x" + height); |
| 25 | }; |
| 26 | |
| 27 | export default { |
| 28 | icon: '<i class="fa-solid fa-expand fa-lg fa-bounce"></i>', |