originalId 声明问题

This commit is contained in:
Wang Kejun 2023-04-19 09:50:22 +08:00
parent d406b70579
commit dbabfc0dc2
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ export declare type WechatMpConfig = {
type: 'wechatMp';
appId: string;
appSecret: string;
originalId: string;
originalId?: string;
qrCodePrefix?: string;
server?: {
url?: string;
@ -44,7 +44,7 @@ export declare type WechatPublicConfig = {
isService: boolean;
appId: string;
appSecret: string;
originalId: string;
originalId?: string;
templateMsgs?: WechatPublicTemplateMsgsConfig;
server?: {
url?: string;

View File

@ -10,7 +10,7 @@ export type WechatMpConfig = {
type: 'wechatMp';
appId: string;
appSecret: string;
originalId: string; //原始id
originalId?: string; //原始id
qrCodePrefix?: string; // 扫描二维码跳转的前缀(在小程序后台配置必须统一跳转到weCharQrCode/scan/index)
server?: {
url?: string; //服务器地址(URL)
@ -39,7 +39,7 @@ export type WechatPublicConfig = {
isService: boolean; // 是否服务号
appId: string;
appSecret: string;
originalId: string; //原始id
originalId?: string; //原始id
templateMsgs?: WechatPublicTemplateMsgsConfig;
server?: {
url?: string; //服务器地址(URL)