* Tests for toJson() type
| 208 | * Tests for toJson() type |
| 209 | */ |
| 210 | interface FilmToJson { |
| 211 | id: number; |
| 212 | name?: string; |
| 213 | } |
| 214 | class FilmModelToJson extends Model<FilmToJson> implements FilmToJson { |
| 215 | id!: number; |
| 216 | name?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected