Interface CharacterOptions

interface CharacterOptions {
    age: number[];
    gender: string;
    limit: IntRange<1, 100>;
    nationality: string;
    occupation: string;
    offset: number;
    search: string;
    species: boolean;
}

Properties

age: number[]
gender: string
limit: IntRange<1, 100>
nationality: string
occupation: string
offset: number
search: string
species: boolean

Generated using TypeDoc