We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 678eefb commit 694acd2Copy full SHA for 694acd2
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "fre",
3
- "version": "2.7.0",
+ "version": "2.7.1",
4
"type": "module",
5
"main": "dist/fre.js",
6
"unpkg": "dist/fre.umd.js",
src/reconcile.ts
@@ -172,7 +172,7 @@ const side = (effects?: HookEffect[]) => {
172
effects.length = 0
173
}
174
175
-const diff = (aCh, bCh) => {
+const diff = (aCh:Fiber[], bCh:Fiber[]) => {
176
let aHead = 0,
177
bHead = 0,
178
aTail = aCh.length - 1,
0 commit comments