global.d.ts 221 B

12345678910
  1. import fs from "fs"
  2. import Settings from "./Settings"
  3. import HTTPServer from "./HTTPServer"
  4. declare global {
  5. interface Window {
  6. fs: typeof fs,
  7. settings: Settings,
  8. httpserver: HTTPServer
  9. }
  10. }