Feat(twitter): adds showUser() (#454)

This commit is contained in:
Alex Muramoto 2016-08-19 04:00:05 -07:00 committed by Ibrahim Hadeed
parent 4e87ac72ea
commit 4a0f082158

View File

@ -45,6 +45,13 @@ export class TwitterConnect {
*/ */
@Cordova() @Cordova()
static logout(): Promise<any> {return; } 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 { export interface TwitterConnectResponse {
/** /**