在TypeScript中使用sqlcipher

时间:2016-04-26 06:57:36

标签: cordova typescript sqlcipher

我正在使用TypeScript创建Cordova应用程序。

有没有人知道如何在TypeScript中使用sqlcipher?

我发现这个非常有用的扩展,但我想在TypeScript中使用它。 可能吗?还是其他任何好的解决方案?

https://github.com/litehelpers/Cordova-sqlcipher-adapter

1 个答案:

答案 0 :(得分:1)

  

有没有人知道如何在TypeScript中使用sqlcipher

您的JavaScript是TypeScript。图书馆:https://github.com/litehelpers/Cordova-sqlcipher-adapter公开了一个可变的sqlitePlugin。您可以非常轻松地将它与TypeScript一起使用:

declare var sqlitePlugin:any;

与JavaScript相比,你绝不会更糟糕。

更多

https://basarat.gitbooks.io/typescript/content/docs/types/migrating.html