2019-10-30 01:08:38 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
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;
|
2021-03-01 23:33:52 +01:00
|
|
|
declare let zulip_test: any;
|
2021-02-20 05:52:06 +01:00
|
|
|
|
|
|
|
interface JQuery {
|
|
|
|
expectOne(): JQuery;
|
|
|
|
}
|