| 51 | |
| 52 | // Interfaces |
| 53 | interface Model { |
| 54 | uuid: string; |
| 55 | foo: string; |
| 56 | } |
| 57 | let comment: Model = { uuid: '123', foo: 'bar' }; |
| 58 | assertType(route('posts.comments.show', { comment, post: '1' })); |
| 59 |
nothing calls this directly
no outgoing calls
no test coverage detected