mirror of
https://github.com/HugoAura/Seewo-HugoAura.git
synced 2026-06-24 09:54:26 +08:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
|
|
// @ts-check
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @type {import("../../types/render/uiHook").UIHookConfig}
|
||
|
|
*/
|
||
|
|
const def = {
|
||
|
|
targets: {},
|
||
|
|
globalStyles: ["ui/css/global.css"],
|
||
|
|
globalJS: ["ui/js/global.js", "ui/js/plsConnectionManager.js"],
|
||
|
|
onLoaded: `
|
||
|
|
console.log('[HugoAura / UI / Hooks / Desktop Assistant] Page loaded.');
|
||
|
|
`,
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = def;
|