Files
takerofnotes-website/pages/star-wars/types.ts
2026-03-17 23:07:22 -04:00

11 lines
164 B
TypeScript

export type Movie = {
id: string
title: string
release_date: string
}
export type MovieDetails = Movie & {
director: string
producer: string
}