Skip to content

Commit

Permalink
Feat(twitter): adds showUser() (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
amuramoto authored and ihadeed committed Aug 19, 2016
1 parent 4e87ac7 commit 4a0f082
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/plugins/twitter-connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ export class TwitterConnect {
*/
@Cordova()
static logout(): Promise<any> {return; }

/**
* Returns user's profile information
* @return {Promise<any>} returns a promise that resolves if user profile is successfully retrieved and rejects if request fails
*/
@Cordova()
static showUser(): Promise<any> {return; }
}
export interface TwitterConnectResponse {
/**
Expand Down

0 comments on commit 4a0f082

Please sign in to comment.