aboutsummaryrefslogtreecommitdiff
path: root/src/cleaners/skyblock/bank.ts
blob: 7db7a3768f4339ccf923f6cb4585424e265d9bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { cleanSkyblockProfileResponseLighter } from "./profile"

export interface Bank {
	balance: number
	history: any[]
}

export function cleanBank(data: any): Bank {
	return {
		balance: data?.banking?.balance ?? 0,
		// TODO: make transactions good
		history: data?.banking?.transactions ?? []
	}
}