(ui: UI)
| 45 | permissions: string[] = []; |
| 46 | |
| 47 | getNative(ui: UI) { |
| 48 | if (this.permissions.length > 0) { |
| 49 | return FUIFacebookAuth.alloc().initWithAuthUIPermissions(ui.native, this.permissions); |
| 50 | } else { |
| 51 | return FUIFacebookAuth.alloc().initWithAuthUI(ui.native); |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | export class TwitterProvider extends ProviderBase { |
nothing calls this directly
no outgoing calls
no test coverage detected