diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 22:32:57 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 22:32:57 +0200 |
commit | 0639b6176fef86e3c467cfcdc393fa99f68086f5 (patch) | |
tree | 2b01c393fb4f3c742d3d040f6d7f724b5009e639 /util/src | |
parent | :arrow_up: update mongoose types (diff) | |
download | server-0639b6176fef86e3c467cfcdc393fa99f68086f5.tar.xz |
:bug: fix bundle postinstall
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/util/Database.ts | 1 | ||||
-rw-r--r-- | util/src/util/MongoBigInt.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/util/src/util/Database.ts b/util/src/util/Database.ts index 233152f1..2e04e0ff 100644 --- a/util/src/util/Database.ts +++ b/util/src/util/Database.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import "./MongoBigInt"; import mongoose, { Collection, Connection, LeanDocument } from "mongoose"; import { ChangeStream, ChangeEvent, Long } from "mongodb"; diff --git a/util/src/util/MongoBigInt.ts b/util/src/util/MongoBigInt.ts index 5148b742..2ae8b91c 100644 --- a/util/src/util/MongoBigInt.ts +++ b/util/src/util/MongoBigInt.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import mongoose from "mongoose"; class LongSchema extends mongoose.SchemaType { |