Files
zulip-desktop/typings.d.ts
Anders Kaseorg ca6b2312be typings: Get Window.Notification from upstream.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-03-03 18:16:01 -08:00

24 lines
496 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;
$: any;
lightbox: any;
}