Files
zulip/static/js/global.d.ts
Anders Kaseorg 9997e13032 js: Convert static/js/unread_ops.js to ES6 module.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-03-02 17:06:35 -08:00

31 lines
881 B
TypeScript

// These declarations tell the TypeScript compiler about the existence
// of the global variables for our untyped JavaScript modules. Please
// remove each declaration when the corresponding module is migrated
// to TS.
declare let blueslip: any;
declare let compose_actions: any;
declare let composebox_typeahead: any;
declare let csrf_token: any;
declare let current_msg_list: any;
declare let emoji: any;
declare let favicon: any;
declare let home_msg_list: any;
declare let i18n: any;
declare let message_events: any;
declare let message_list: any;
declare let narrow: any;
declare let page_params: any;
declare let pointer: any;
declare let settings_profile_fields: any;
declare let stream_list: any;
declare let subs: any;
declare let ui: any;
declare let unread: any;
declare let widgetize: any;
declare let zulip_test: any;
interface JQuery {
expectOne(): JQuery;
}