expand spot public socket support

This commit is contained in:
tiagosiebler
2021-08-15 11:11:33 +01:00
parent 572bd19abd
commit 10ac2ec384
3 changed files with 161 additions and 16 deletions

13
src/types/shared.ts Normal file
View File

@@ -0,0 +1,13 @@
export type KlineInterval = '1m'
| '3m'
| '5m'
| '15m'
| '30m'
| '1h'
| '2h'
| '4h'
| '6h'
| '12h'
| '1d'
| '1w'
| '1M';