All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
15 lines
323 B
JavaScript
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
|
|
});
|
|
});
|
|
} |