UNPKG

genshin_panel

Version:
19 lines (18 loc) 576 B
import Attribute from "../../attribute/attribute"; import { Element } from "../../common/element"; import { SecondaryTagName } from "../../common/type"; import WeaponType from "../weapon/weapon_type"; export default interface CharacterDataType { element: Element; alt: string[]; life: number[]; attack: number[]; defend: number[]; secondary: { name: SecondaryTagName; family: string; }; weapon: WeaponType; applyTalent: (attribute: Attribute) => null; constellation?: (attribute: Attribute) => void; }