UNPKG

@liuliang520500/pdd-sdk

Version:

拼多多开放平台SDK,支持多多进宝API

20 lines (17 loc) 401 B
export interface PddClientConfig { clientId: string; clientSecret: string; accessToken?: string; debug?: boolean; } export class PddClient { constructor(config: PddClientConfig); /** * 执行API请求 */ execute(method: string, params: Record<string, any>): Promise<any>; /** * 生成签名 */ generateSign(params: Record<string, any>): string; }