AniLink - v1.29.2
    Preparing search index...

    Staff is an interface representing a staff member. It includes the id and name each having their own properties.

    interface Staff {
        id: number;
        name: Name;
    }
    Index
    id: number

    id is a number representing the id of the staff member.

    name: Name

    name is an instance of Name representing the name of the staff member.