less hacking way of pulling poe data
This commit is contained in:
21
app/model/item.ts
Normal file
21
app/model/item.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export interface IItem {
|
||||
category: any[];
|
||||
descrText: string;
|
||||
explicitMods: string[];
|
||||
frameType: number;
|
||||
h: number;
|
||||
icon: string;
|
||||
id: string;
|
||||
identified: boolean;
|
||||
ilvl: number;
|
||||
inventoryId: string;
|
||||
league: string;
|
||||
name: string;
|
||||
properties: any[];
|
||||
stackSize?: number;
|
||||
typeLine: string;
|
||||
verified: boolean;
|
||||
w: number;
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
Reference in New Issue
Block a user