Initial Commit

This commit is contained in:
2026-02-27 11:39:29 +02:00
parent defa9dcd6f
commit 200058ba03
26 changed files with 1445 additions and 2 deletions

11
js/constants.js Normal file
View File

@@ -0,0 +1,11 @@
// CONSTANTS
((global) => {
global.Y2K = {
TYPE_INFO: "info",
TYPE_WARNING: "warning",
TYPE_ERROR: "error",
TYPE_SUCCESS: "success"
};
})(window);