Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Bruno Predot
/
tmdb_test
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Bruno Predot
2025-04-25 17:53:28 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6d6cc61694026274abe98fbdb6d0e2f6fb3a5175
6d6cc616
1 parent
785892e3
Correctif erreur de typage.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
interfaces/movie.ts
interfaces/movie.ts
View file @
6d6cc61
import
type
{
CreditInterface
}
from
"~/interfaces/credit"
;
import
type
{
CreditInterface
,
CreditsResponse
}
from
"~/interfaces/credit"
;
export
interface
MovieInterface
{
id
:
number
;
...
...
@@ -17,7 +17,7 @@ export interface MovieInterface {
video
:
boolean
;
vote_average
:
number
;
vote_count
:
number
;
credit
:
Credit
Interfac
e
;
credit
:
Credit
sRespons
e
;
}
type
Genre
=
{
...
...
Please
register
or
login
to post a comment