Refactor interface names

This commit is contained in:
Tee
2021-02-25 22:02:32 -05:00
parent ade8606e8f
commit 669e6db54c
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
export interface IAbility {
export interface Ability {
name: string;
text: string;
type: string;

View File

@ -1,4 +1,4 @@
export interface IAncientTrait {
export interface AncientTrait {
name: string;
text: string;
}

View File

@ -1,4 +1,4 @@
export interface IQuery {
export interface Query {
name: string;
value: string | number;
}

View File

@ -1,4 +1,4 @@
export interface IResistance {
export interface Resistance {
type: string;
value: string;
}

View File

@ -1,4 +1,4 @@
export interface IWeakness {
export interface Weakness {
type: string;
value: string;
}