Wplace-Overlay-Pro/src/main.ts
2025-08-13 03:19:43 +07:00

15 lines
284 B
TypeScript

/// <reference types="tampermonkey" />
// @ts-nocheck
import { bootstrapApp } from "./app";
(function () {
"use strict";
window.onload = () => {
bootstrapApp().catch((e) =>
console.error("Overlay Pro bootstrap failed", e),
);
};
})();
export {};