(obj: any)
| 143 | * @param obj |
| 144 | */ |
| 145 | export function isTNode(obj: any): obj is TNode { |
| 146 | return isShapeOf<TNode>(obj, ShapeOfTNode); |
| 147 | } |
| 148 | const ShapeOfTNode: ShapeOf<TNode> = { |
| 149 | type: true, |
| 150 | index: true, |
nothing calls this directly
no test coverage detected