mirror of
https://github.com/HugoAura/Seewo-HugoAura.git
synced 2026-06-22 08:14:26 +08:00
16 lines
353 B
JavaScript
Executable File
16 lines
353 B
JavaScript
Executable File
// @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;
|