You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* @file 支付代扣签约
|
|
*/
|
|
declare namespace my {
|
|
interface IPaySignCenterOptions {
|
|
signStr: string;
|
|
success?(res: any): void;
|
|
fail?(res: 7000 | 7001 | 7002 | 6001 | 6002): void;
|
|
complete?(): void;
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
function paySignCenter(options: IPaySignCenterOptions): void;
|
|
}
|
|
|