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.
|
|
|
|
|
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;
|
|
|
|
}
|
2021-05-24 01:27:38 +02:00
|
|
|
|
|
|
|
interface Window {
|
2021-06-06 22:13:18 +02:00
|
|
|
last_stacktrace: string;
|
2021-05-24 01:27:38 +02:00
|
|
|
page_params_parse_time: number;
|
|
|
|
}
|