mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 04:53:17 +00:00
23 lines
484 B
TypeScript
23 lines
484 B
TypeScript
declare module '@electron-elements/send-feedback';
|
|
declare module 'node-mac-notifier';
|
|
declare module 'wurl';
|
|
|
|
interface PageParamsObject {
|
|
realm_uri: string;
|
|
default_language: string;
|
|
external_authentication_methods: any;
|
|
}
|
|
declare var page_params: PageParamsObject;
|
|
|
|
// This is mostly zulip side of code we access from window
|
|
interface Window {
|
|
$: any;
|
|
narrow: any
|
|
}
|
|
|
|
interface ZulipWebWindow extends Window {
|
|
electron_bridge: any;
|
|
tray: any;
|
|
lightbox: any;
|
|
}
|