mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 21:10:23 +00:00
[@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:
committed by
Ryan Cavanaugh
parent
fc7fb0f5a0
commit
5388a695f6
Vendored
+1
-1
@@ -403,7 +403,7 @@ declare module "mongoose" {
|
||||
static STATES: ConnectionStates;
|
||||
}
|
||||
|
||||
enum ConnectionStates {
|
||||
export enum ConnectionStates {
|
||||
disconnected = 0,
|
||||
connected = 1,
|
||||
connecting = 2,
|
||||
|
||||
Reference in New Issue
Block a user