AniLink - v1.29.2
    Preparing search index...

    Studio is an interface representing a studio. It includes the id and name each having their own properties.

    interface Studio {
        id: number;
        name: string;
    }
    Index
    id: number

    id is a number representing the id of the studio.

    name: string

    name is a string representing the name of the studio.