react-native-kakao
Version:
Kakao login module(package) for React Native
19 lines (15 loc) • 421 B
TypeScript
export default class RNKakao {
public static login(): Promise<KakaoUser>
public static logout(): Promise<{}>
public static userInfo(): Promise<KakaoUser>
}
export interface KakaoUser {
id: string
accessToken: string
nickname: string | null
email: string | null
profileImage: string | null
profileImageThumbnail: string | null
ageRange: string | null
gender: string | null
}