1
0
Fork 0
mirror of https://github.com/dadada/inbox2matrix.git synced 2025-06-07 17:43:57 +02:00

Add initial encryption support. Still missing automatic device verification

This commit is contained in:
Tim Schubert 2019-05-01 19:41:51 +02:00
parent 1579a8022d
commit 7b07ca9cb1
4 changed files with 49 additions and 17 deletions

9
globals.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
declare global {
namespace NodeJS {
interface Global {
Olm : any;
}
}
}
export { };