/** 微信支付回调Header中数据类型 */ export interface WechatPayCallbackHeaders { /** * 签名类型 * @example WECHATPAY2-SHA256-RSA2048 */ ['wechatpay-signature-type']: string; /** * 随机串 * @example B0h6o2qPImzr4R9zc1PklE7BW3RsgSqd */ ['wechatpay-nonce']: string; /** * 商户证书序列号 * @example 5F31E87E097516A9E9FA88425DF1BE52CC980DD3 */ ['wechatpay-serial']: string; /** 加密信息 */ ['wechatpay-signature']: string; /** * 时间戳,精确到秒,字符串类型 * @example 1653613654 */ ['wechatpay-timestamp']: string; }