diff options
author | mat <github@matdoes.dev> | 2022-05-17 16:20:20 +0000 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-05-17 16:20:20 +0000 |
commit | b6d23f4334eae873e7d32a4d5bb5f8b3a1a67ce5 (patch) | |
tree | c18437319e4b706862895b79b07df6e7c5a066fe /src/lib/utils.ts | |
parent | 8ba9c7090c88c04d43ca727b7ed012cf5a6b58c8 (diff) | |
download | skyblock-stats-b6d23f4334eae873e7d32a4d5bb5f8b3a1a67ce5.tar.gz skyblock-stats-b6d23f4334eae873e7d32a4d5bb5f8b3a1a67ce5.tar.bz2 skyblock-stats-b6d23f4334eae873e7d32a4d5bb5f8b3a1a67ce5.zip |
improved auction price scatterplot
Diffstat (limited to 'src/lib/utils.ts')
-rw-r--r-- | src/lib/utils.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/utils.ts b/src/lib/utils.ts index c2e4b86..c094db4 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -1,3 +1,5 @@ +import type { SimpleAuctionSchema } from "./APITypes" + export const colorCodes: { [key: string]: string } = { '0': '#000000', // black '1': '#0000be', // blue @@ -224,5 +226,5 @@ export function skyblockTime(year: number, month = 1, day = 1) { export interface PreviewedAuctionData { pageX: number pageY: number - uuid: string + auction: SimpleAuctionSchema } |