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