top-client
Version:
a client for taobao open platform.
19 lines (18 loc) • 436 B
TypeScript
/**
* Sign API request.
* see http://open.taobao.com/doc/detail.htm?id=111#s6
*
* @param {String} secret
* @param {Object} params
* @return {String} sign string
*/
export declare function sign(params: {
[index: string]: any;
}, secret: string): string;
/**
* get API Response Name.
*
* @param {String} apiName
* @return {String} response result
*/
export declare function getApiResponseName(apiName: string): string;