()
| 2 | import { importAssets } from './userscript'; |
| 3 | |
| 4 | export function pwa() { |
| 5 | $(document).ready(async function () { |
| 6 | const head = j.$('head'); |
| 7 | importAssets(head); |
| 8 | |
| 9 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 10 | const minimalObj = new Minimal($('html')); |
| 11 | }); |
| 12 | } |