Refactor FiberNode typedef to separate file

This commit is contained in:
2019-07-20 18:50:50 +05:30
parent 2a628c608e
commit b2c107a5f5
2 changed files with 6 additions and 6 deletions
+5
View File
@@ -0,0 +1,5 @@
export interface FiberNode {
child: FiberNode | null;
sibling: FiberNode | null;
// Add type
}