* Tests for toJson() type
| 300 | * Tests for toJson() type |
| 301 | */ |
| 302 | interface FilmToJson { |
| 303 | id: number; |
| 304 | name?: string; |
| 305 | } |
| 306 | class FilmModelToJson extends Model<FilmToJson> implements FilmToJson { |
| 307 | id!: number; |
| 308 | name?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected