You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
456 B
9 lines
456 B
// browser.ts — IIFE-style browser entry point
|
|
// Built by: bun build src/browser.ts --target browser --outfile public/mono-display.js
|
|
// Attaches everything to window.MonoDisplay so inline <script> tags can use it
|
|
// without ES module syntax.
|
|
|
|
import * as MonoDisplay from "./index";
|
|
|
|
// Expose on globalThis (= window in browser, globalThis elsewhere)
|
|
(globalThis as typeof globalThis & { MonoDisplay: typeof MonoDisplay }).MonoDisplay = MonoDisplay;
|
|
|