@congminh1254/shopee-sdk
Version:
Shopee SDK maintaining by community
10 lines (9 loc) • 623 B
TypeScript
import { ShopeeConfig } from "../sdk.js";
import { GetShopsByPartnerParams, GetMerchantsByPartnerParams, GetShopsByPartnerResponse, GetMerchantsByPartnerResponse, GetShopeeIpRangeResponse } from "../schemas/public.js";
import { BaseManager } from "./base.manager.js";
export declare class PublicManager extends BaseManager {
constructor(config: ShopeeConfig);
getShopsByPartner(params?: GetShopsByPartnerParams): Promise<GetShopsByPartnerResponse>;
getMerchantsByPartner(params?: GetMerchantsByPartnerParams): Promise<GetMerchantsByPartnerResponse>;
getShopeeIpRange(): Promise<GetShopeeIpRangeResponse>;
}