18 lines
395 B
TypeScript
18 lines
395 B
TypeScript
// types/window.d.ts
|
|
// Copyright (C) 2026 Robert Colbert <rob.colbert@openplatform.us>
|
|
// All Rights Reserved
|
|
|
|
import { DtpGlobals } from "client/js/lib/globals.ts";
|
|
import { DtpWebApp } from "../src/client/js/web-app.ts";
|
|
|
|
declare global {
|
|
interface Window {
|
|
dtp: DtpGlobals;
|
|
app: DtpWebApp;
|
|
}
|
|
interface GlobalThis extends Window {
|
|
dtp: DtpGlobals;
|
|
app: DtpWebApp;
|
|
}
|
|
}
|