UNPKG

@openauth/kakao

Version:
15 lines (14 loc) 480 B
import { Client, HttpPath } from '@openauth/core'; import { GetUserMeResponse } from './interfaces'; export declare class KakaoClient extends Client { request<TData = any>(method: string, path: string | HttpPath, params?: Record<string, any>, headers?: Record<string, any>): Promise<{ status: number; headers: any; data: TData; }>; getUserMe(): Promise<{ status: number; headers: any; data: GetUserMeResponse; }>; }