8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
import type { MovieList } from "~/types/movielist";
|
|
|
|
export type UserProfile = {
|
|
name: string;
|
|
username: string;
|
|
date_joined: string;
|
|
lists: MovieList[];
|
|
};
|