brawlhalla-api-ts
Version:
TypeScript wrapper for the Brawlhalla API.
9 lines (8 loc) • 355 B
TypeScript
import { Legend } from '../models/legend';
export declare class LegendUtils {
static findLegendById(legendId: number): Legend;
static findLegendByName(legendName: string): Legend;
static findLegendByApproximateName(legendToFindName: string): Legend;
private static readonly legends;
private static readonly legendSegmentMap;
}