mirror of https://github.com/zulip/zulip.git
16 lines
447 B
TypeScript
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;
|
|
}
|