Files
zulip/static/js/global.d.ts
Anders Kaseorg 3ef6f6e2e2 js: Convert static/js/blueslip.js to ES6 module.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-03-17 08:47:15 -04:00

16 lines
447 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 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;
}