@atsu/formidable-client
Version:
A client for Formidable servers written in TypeScript
23 lines (22 loc) • 412 B
TypeScript
export interface Barrage {
id: string;
type: Type;
icon: string;
name: string;
image?: string;
ships: string[];
hull: string;
rounds: Round[];
}
export interface Round {
type: string;
dmgL: number;
dmgM: number;
dmgH: number;
note: null | string;
}
export declare enum Type {
Class = "class",
Ship = "ship",
Skill = "skill"
}