Files
actual/packages/loot-core/typings/window.d.ts
Matiss Janis Aboltins ede51872e2 🐛 fix link-schedule option in transaction table (#1250)
Closes #1236

---------

Co-authored-by: Jed Fox <git@jedfox.com>
2023-07-03 16:24:59 +01:00

17 lines
369 B
TypeScript

import { usePushModal } from '../../desktop-client/src/util/router-tools';
export {};
declare global {
interface Window {
Actual?: {
IS_FAKE_WEB: boolean;
ACTUAL_VERSION: string;
openURLInBrowser: (url: string) => void;
};
__navigate?: import('react-router').NavigateFunction;
__pushModal?: ReturnType<typeof usePushModal>;
}
}