forked from RocketChat/Rocket.Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypings.d.ts
More file actions
28 lines (24 loc) · 725 Bytes
/
typings.d.ts
File metadata and controls
28 lines (24 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
declare module 'meteor/rocketchat:tap-i18n';
declare module 'meteor/littledata:synced-cron';
declare module 'meteor/promise';
declare module 'meteor/ddp-common';
declare module 'meteor/routepolicy';
declare module 'meteor/logging';
declare module 'xml-encryption';
declare module 'webdav';
declare module 'meteor/konecty:user-presence' {
namespace UserPresenceMonitor {
function processUserSession(userSession: any, event: string): void;
}
namespace UserPresence {
function removeConnectionsByInstanceId(id: string): void;
}
}
declare const Package: {
'disable-oplog': object;
};
declare module 'meteor/meteorhacks:inject-initial' {
namespace Inject {
function rawBody(key: string, value: string): void;
}
}