export interface AbilitiesDescription {
    name: string | null;
    type: string | null;
    description: string | null;
    photo: string[];
}
