wordle-xdc/env.d.ts
2025-04-23 13:53:10 -07:00

10 lines
196 B
TypeScript

/// <reference types="vue/macros-global" />
import { Webxdc } from "webxdc-types";
import { Payload } from "./src/types";
declare global {
interface Window {
webxdc: Webxdc<Payload>;
}
}