🍿 @lorenzopant/tmdb

Enums

Enumerated values used across TMDB API responses.

Enumerated constants used in TMDB API responses to represent typed numeric values.

ReleaseType

Represents the type of a movie release as defined by TMDB. Used in MovieReleaseDate.type.

ValueNameDescription
1PremiereA high-profile premiere event, typically a red carpet or festival screening.
2TheatricalLimitedA limited theatrical release, usually in select cities or venues.
3TheatricalA wide theatrical release to the general public.
4DigitalDigital release via streaming or download platforms.
5PhysicalPhysical media release (Blu-ray, DVD, etc.).
6TVTelevision broadcast premiere.
import { ReleaseType } from "@lorenzopant/tmdb";

if (releaseDate.type === ReleaseType.Theatrical) {
	console.log("Wide theatrical release");
}

On this page