bitbox-sdk
Version:
BITBOX SDK for Bitcoin Cash
23 lines (19 loc) • 347 B
text/typescript
export interface IConfig {
restURL?: string
wsURL?: string
bitdbURL?: string
}
export interface SocketConfig {
restURL?: string
wsURL?: string
bitsocketURL?: string
callback?: Function
}
export interface QueryInterface {
amount?: number
label?: string
message?: string
}
export interface BitDBResponse {
message: string
}