updated lists index to use typescript and composition api

This commit is contained in:
Edward Tirado Jr 2025-04-06 17:30:14 -05:00
parent e335601ab8
commit d339424e7a
3 changed files with 34 additions and 29 deletions

6
src/types/movielist.ts Normal file
View file

@ -0,0 +1,6 @@
export type MovieList = {
id: number;
name: string;
public: boolean;
movie_count: number;
};