anime-info
Version:
Plugin intended to collect informing of anime characters through the fandow wiki
22 lines (21 loc) • 561 B
TypeScript
import { GenericPhoto } from '../../shared/models';
export interface OnePunchManInfo {
abilities?: string[];
affiliation?: string[];
age?: string | null;
alias?: string[];
class?: string | null;
description?: string | null;
gallery?: GenericPhoto[];
height?: string | null;
location?: string[];
name?: string | null;
occupation?: string[];
partner?: string[];
photo?: GenericPhoto[];
race?: string[];
rank?: string[];
sex?: string | null;
status?: string | null;
weight?: string | null;
}