(obj: any)
| 102 | * @param obj |
| 103 | */ |
| 104 | export function isTView(obj: any): obj is TView { |
| 105 | return isShapeOf<TView>(obj, ShapeOfTView); |
| 106 | } |
| 107 | const ShapeOfTView: ShapeOf<TView> = { |
| 108 | type: true, |
| 109 | blueprint: true, |
nothing calls this directly
no test coverage detected