Generic API response format.

export interface AniListResponse<T> {
data: T;
errors?: GraphQLError[];
}
interface AniListResponse<T> {
    data: T;
    errors?: GraphQLError[];
}

Type Parameters

  • T

Properties

Properties

data: T
errors?: GraphQLError[]