interface Stats { type: string; value: string; } export interface Resistance extends Stats { } export interface Weakness extends Stats { } export {};