Skip to content

Commit 7c22bf6

Browse files
committed
fix: remove unintended invisible characters
1 parent 754672c commit 7c22bf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/wx/lib.wx.component.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,11 +648,11 @@ declare namespace WechatMiniprogram.Component {
648648
(res: UpdatePerformance<WithDataPath>): void
649649
}
650650
interface UpdatePerformance<WithDataPath> {
651-
/** 此次更新过程的 ID */
651+
/** 此次更新过程的 ID */
652652
updateProcessId: number
653653
/** 对于子更新,返回它所属的更新过程 ID */
654654
parentUpdateProcessId?: number
655-
/** 是否是被合并更新,如果是,则 updateProcessId 表示被合并到的更新过程 ID */
655+
/** 是否是被合并更新,如果是,则 updateProcessId 表示被合并到的更新过程 ID */
656656
isMergedUpdate: boolean
657657
/** 此次更新的 data 字段信息,只有 withDataPaths 设为 true 时才会返回 */
658658
dataPaths: WithDataPath extends true ? string[] : undefined

0 commit comments

Comments
 (0)