result.js 274 B

12345678910111213
  1. /** DEPRECATED **/
  2. function Result() {
  3. this.messageId = undefined;
  4. this.canonicalRegistrationId = undefined;
  5. this.errorCode = undefined;
  6. console.warn("You are using node-gcm Result which is deprecated");
  7. }
  8. module.exports = Result;
  9. /** END DEPRECATED **/