less hacking way of pulling poe data

This commit is contained in:
2018-08-27 23:54:27 -05:00
parent 5423b81c95
commit 97acc0d4fa
34 changed files with 651 additions and 221 deletions

18
app/model/stash-tab.ts Normal file
View File

@@ -0,0 +1,18 @@
interface IStashTabColor {
r: number;
g: number;
b: number;
}
export interface IStashTab {
colour: IStashTabColor;
hidden: boolean;
i: number;
id: string;
n: string;
selected: boolean;
srcC: string;
srcL: string;
srcR: string;
type: string;
}