Skip to content
Snippets Groups Projects
window.d.ts 225 B
export {};

declare global {
  interface Window {
    Actual?: {
      IS_FAKE_WEB: boolean;
      ACTUAL_VERSION: string;
    };

    __history?: {
      location;
      push(url: string, opts?: unknown): void;
    };
  }
}