( child: React.ReactElement, )
| 16 | } |
| 17 | |
| 18 | export function isMethod( |
| 19 | child: React.ReactElement, |
| 20 | ): child is React.ReactElement<{ col?: number; colspan?: number; row?: number }> { |
| 21 | return child.type === Method; |
| 22 | } |
| 23 | |
| 24 | export function isSubsection( |
| 25 | child: React.ReactElement, |