mirror of
https://github.com/oceanprotocol/react.git
synced 2025-02-14 21:10:38 +01:00
8 lines
114 B
TypeScript
8 lines
114 B
TypeScript
enum ProviderStatus {
|
|
NOT_AVAILABLE = -1,
|
|
NOT_CONNECTED = 0,
|
|
CONNECTED = 1
|
|
}
|
|
|
|
export default ProviderStatus
|