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;
|
2023-02-22 23:03:47 +01:00
|
|
|
tab(action?: string): this; // From web/third/bootstrap
|
2021-02-20 05:52:06 +01:00
|
|
|
}
|