Files
sigpro-ui/index.js
natxocc 7d2ad67513
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
Update TS
2026-04-29 23:23:08 +02:00

15 lines
323 B
JavaScript

import * as All from './sigpro-ui.js';
export const Components = { ...All };
if (typeof window !== 'undefined') {
Object.entries({ ...Components}).forEach(([name, value]) => {
Object.defineProperty(window, name, {
value,
writable: false,
configurable: true,
enumerable: true
});
});
}