poe-custom-elements
Version:
Path of Exile custom elements
22 lines • 565 B
TypeScript
export declare const cardElementData: CardElementData[];
/**
* https://github.com/shonya3/divicards/tree/main/card_element
*/
export type CardElementData = {
slug: string;
name: string;
artFilename: string;
flavourText: string;
stackSize: number | null;
rewardHtml: string;
dropLevel: DropLevel;
};
export type DropLevel = {
level: {
min: number | null;
max: number | null;
};
label: string;
};
export declare function findCardBySlug(slug: string): CardElementData | null;
//# sourceMappingURL=data.d.ts.map