mirror of https://github.com/zulip/zulip.git
13 lines
365 B
TypeScript
13 lines
365 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 current_msg_list: any;
|
|
declare let home_msg_list: any;
|
|
declare let zulip_test: any;
|
|
|
|
interface JQuery {
|
|
expectOne(): JQuery;
|
|
}
|