(obj: any)
| 71 | * @param obj |
| 72 | */ |
| 73 | export function isTI18n(obj: any): obj is TI18n { |
| 74 | return isShapeOf<TI18n>(obj, ShapeOfTI18n); |
| 75 | } |
| 76 | const ShapeOfTI18n: ShapeOf<TI18n> = { |
| 77 | create: true, |
| 78 | update: true, |
nothing calls this directly
no test coverage detected