(obj: any)
| 85 | * @param obj |
| 86 | */ |
| 87 | export function isTIcu(obj: any): obj is TIcu { |
| 88 | return isShapeOf<TIcu>(obj, ShapeOfTIcu); |
| 89 | } |
| 90 | const ShapeOfTIcu: ShapeOf<TIcu> = { |
| 91 | type: true, |
| 92 | anchorIdx: true, |
nothing calls this directly
no test coverage detected