mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 03:23:51 -05:00
17 lines
369 B
TypeScript
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>;
|
|
}
|
|
}
|