native.js 506 B

123456789101112131415161718
  1. var __native = {
  2. /** @type {function()} */
  3. logout: function() {},
  4. /** @type {function()} */
  5. readSmsPermission: function() {},
  6. /** @type {function():string} */
  7. getSms: function() {},
  8. /** @type {function():string} */
  9. getStatic: function() {},
  10. /** @type {function(string)} */
  11. setCurrentChannel: function(chanId) {},
  12. /** @type {function(string, boolean, boolean)} */
  13. setTitle: function(title, favEnabled, isFavorite) {}
  14. };
  15. /** @type {boolean} */
  16. var IS_LOCAL;