EddyVerbruggen / nativescript-plugin-firebase

:fire: NativeScript plugin for Firebase
https://firebase.google.com
MIT License
1.01k stars 444 forks source link

interface GetInvitationResult has typo #517

Open bogdan00 opened 7 years ago

bogdan00 commented 7 years ago

field deeplink is not camelCased

 export interface GetInvitationResult {
    deeplink: any;
    invitationId: any;
  }

should be

  export interface GetInvitationResult {
    deepLink: any;
    invitationId: any;
  }
richarddavenport commented 7 years ago

Looks like this was corrected. Not sure when it will be published.

EddyVerbruggen commented 7 years ago

Thanks, and indeed it was corrected. I'll publish once the TypeScript port I'm working on is finished.