mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
Add overloads for PDK.me
This commit is contained in:
15
pinterest-sdk/pinterest-sdk.d.ts
vendored
15
pinterest-sdk/pinterest-sdk.d.ts
vendored
@@ -36,13 +36,26 @@ declare module PDK {
|
||||
session?: OauthSession;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get information on the currently authenticated user
|
||||
* @param cb the callback export function to handle the response
|
||||
*/
|
||||
export function me(callback: Function): void;
|
||||
|
||||
/**
|
||||
* Get information on the currently authenticated user
|
||||
* @param path the url path
|
||||
* @param cb the callback export function to handle the response
|
||||
*/
|
||||
export function me(path: string, callback: Function): void;
|
||||
|
||||
/**
|
||||
* Get information on the currently authenticated user
|
||||
* @param path the url path
|
||||
* @param params the parameters for the request
|
||||
* @param cb the callback export function to handle the response
|
||||
*/
|
||||
export function me(path?: string, params?: Object, callback?: Function): void;
|
||||
export function me(path: string, params: Object, callback: Function): void;
|
||||
|
||||
/**
|
||||
* Make an API call to the server
|
||||
|
||||
Reference in New Issue
Block a user