Class AnimeDetails

Class representing the details of an anime.

Constructors

  • Creates an instance of AnimeDetails.

    Parameters

    • anime_type: AnimeType

      The type of the anime (e.g., TV, OVA, Movie).

    • status: AnimeStatus

      The status of the anime (e.g., ongoing, completed).

    • aired: string

      The date when the anime first aired.

    • ended: string

      The date when the anime ended.

    • episodes: number

      The total number of episodes.

    • producers: string[]

      The list of producers.

    • durationPerEpisodeInMinutes: number

      The duration of each episode in minutes.

    • MPAA: string

      The MPAA rating of the anime.

    Returns AnimeDetails

Properties

_MPAA: string
_aired: string
_durationPerEpisodeInMinutes: number
_ended: string
_episodes: number
_producers: string[]
_status: AnimeStatus
_type: AnimeType

Accessors

  • get MPAA(): string
  • Gets the MPAA rating of the anime.

    Returns string

    The MPAA rating of the anime.

  • get aired(): string
  • Gets the date when the anime first aired.

    Returns string

    The date when the anime first aired.

  • get durationPerEpisodeInMinutes(): number
  • Gets the duration of each episode in minutes.

    Returns number

    The duration of each episode in minutes.

  • get ended(): string
  • Gets the date when the anime ended.

    Returns string

    The date when the anime ended.

  • get episodes(): number
  • Gets the total number of episodes.

    Returns number

    The total number of episodes.

  • get producers(): string[]
  • Gets the list of producers.

    Returns string[]

    The list of producers.