Interface Character

interface Character {
    ages: number[];
    aliases: string[];
    birthday: string;
    description: string;
    gender: string;
    height: number;
    id: number;
    name: string;
    nationality: string;
    occupations: string[];
    species: string;
    weight: number;
}

Properties

ages: number[]
aliases: string[]
birthday: string
description: string
gender: string
height: number
id: number
name: string
nationality: string
occupations: string[]
species: string
weight: number

Generated using TypeDoc