Files
zulip/static/js/global.d.ts
Anders Kaseorg a58e832884 eslint: Remove unneeded globals.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-03-02 17:06:35 -08:00

17 lines
474 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 csrf_token: any;
declare let current_msg_list: any;
declare let home_msg_list: any;
declare let i18n: any;
declare let page_params: any;
declare let zulip_test: any;
interface JQuery {
expectOne(): JQuery;
}