Represents the search response from Comick API.

export interface ComickSearchResponse {
data: ComickManga[];
status: string;
message?: string;
}
interface ComickSearchResponse {
    data: ComickManga[];
    status: string;
    message?: string;
}

Properties

Properties

data: ComickManga[]
status: string
message?: string