mirror of
https://github.com/ShinkoNet/Wplace-Overlay-Pro.git
synced 2026-04-27 05:23:05 +00:00
15 lines
284 B
TypeScript
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 {};
|
|
|