@pisell/pisellos
Version:
一个可扩展的前端模块化SDK框架,支持插件系统
23 lines (22 loc) • 541 B
TypeScript
import { RequestPlugin } from '../../../../plugins';
/**
* 搜索通用识别码
*/
export declare const searchWalletPass: (request: RequestPlugin, code: string) => Promise<{
searchType: string;
response: any;
}>;
/**
* 搜索钱包
*/
export declare const searchWallet: (request: RequestPlugin, code: string) => Promise<{
searchType: string;
response: any;
}>;
/**
* 搜索商品
*/
export declare const searchProduct: (request: RequestPlugin, code: string) => Promise<{
searchType: string;
response: any;
}>;