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-06-14 20:29:04 +02:00
|
|
|
tab(action?: string): this; // From static/third/bootstrap
|
2021-02-20 05:52:06 +01:00
|
|
|
}
|