| 17 | type NodeRef = RefObject<HTMLDivElement | null>; |
| 18 | |
| 19 | interface StackEntry { |
| 20 | ref: SheetRef; |
| 21 | nodeRef: NodeRef; |
| 22 | isFormSheetRef: RefObject<boolean>; |
| 23 | } |
| 24 | |
| 25 | interface SheetContextValue { |
| 26 | registerByName: (name: string, ref: SheetRef) => () => void; |
nothing calls this directly
no outgoing calls
no test coverage detected