Florian Bouillon f235c62c58
V1
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 09:43:23 +01:00

20 lines
386 B
TypeScript

import AbilityType, { AbilityTypeSimple } from "./AbilityType";
import LangList from "./LangList";
export interface AbilitySingle extends AbilitySimple {
type: AbilityTypeSimple
text: string
}
export interface AbilitySimple {
// id: number // WIP
name: string
}
export default interface Ability {
id?: number
type: AbilityType
name: LangList<string>
text: LangList<string>
}