mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-17 10:19:44 -07:00
8 lines
236 B
JavaScript
8 lines
236 B
JavaScript
export const units = /** @type {const} */ ({
|
|
btc: { id: "btc", name: "Bitcoin" },
|
|
usd: { id: "usd", name: "US Dollars" },
|
|
});
|
|
|
|
/** @typedef {keyof typeof units} ChartUnitKey */
|
|
/** @typedef {typeof units[ChartUnitKey]} ChartUnit */
|