coa-wx-isv
Version:
一个轻量的微信SDK服务商版 for Node.js
23 lines (22 loc) • 668 B
TypeScript
import { WxIsvServiceBase } from '../libs/WxIsvServiceBase';
export declare class WxIsvCategoryService extends WxIsvServiceBase {
getCategory(accessToken: string): Promise<{
errcode: number;
errmsg: string;
categoryList: ({
firstClass: string;
secondClass: string;
firstId: number;
secondId: number;
thirdClass?: undefined;
thirdId?: undefined;
} | {
firstClass: string;
secondClass: string;
thirdClass: string;
firstId: number;
secondId: number;
thirdId: number;
})[];
}>;
}