[@types/mongoose] Property 'disconnected' does not exist on ty… (#36423)

`STATES` is undefined at runtime since `.d.ts` files are not compiled so enum `ConnectionStates` must be exported.
This commit is contained in:
Ethan Setnik
2019-07-01 13:24:55 -07:00
committed by Ryan Cavanaugh
parent fc7fb0f5a0
commit 5388a695f6
+1 -1
View File
@@ -403,7 +403,7 @@ declare module "mongoose" {
static STATES: ConnectionStates;
}
enum ConnectionStates {
export enum ConnectionStates {
disconnected = 0,
connected = 1,
connecting = 2,