10 lines
196 B
TypeScript
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>;
|
|
}
|
|
}
|