summary refs log tree commit diff
path: root/dist/util/MongoBigInt.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 23:55:26 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 23:55:26 +0200
commit011251868d4ec0c4d6cda4509d38e09d7d331cf2 (patch)
tree2c4aa589d4fee812e116edca71680071e3b6b2ef /dist/util/MongoBigInt.d.ts
parent:art: remove _id and __v from response (diff)
parentMerge pull request #2 from afeuerstein/main (diff)
downloadserver-011251868d4ec0c4d6cda4509d38e09d7d331cf2.tar.xz
Merge branch 'main' of https://github.com/discord-open-source/discord-server-util into main
Diffstat (limited to 'dist/util/MongoBigInt.d.ts')
-rw-r--r--dist/util/MongoBigInt.d.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/dist/util/MongoBigInt.d.ts b/dist/util/MongoBigInt.d.ts
deleted file mode 100644

index a809f8c4..00000000 --- a/dist/util/MongoBigInt.d.ts +++ /dev/null
@@ -1,34 +0,0 @@ -import mongoose from "mongoose"; -declare class LongSchema extends mongoose.SchemaType { - $conditionalHandlers: { - $lt: (val: any) => any; - $lte: (val: any) => any; - $gt: (val: any) => any; - $gte: (val: any) => any; - $ne: (val: any) => any; - $in: (val: any) => any; - $nin: (val: any) => any; - $mod: (val: any) => any; - $all: (val: any) => any; - $bitsAnySet: (val: any) => any; - $bitsAllSet: (val: any) => any; - }; - handleSingle(val: any): any; - handleArray(val: any): any; - checkRequired(val: any): boolean; - cast(val: any, scope?: any, init?: any, type?: string): any; - castForQuery($conditional: string, value: any): any; -} -declare module "mongoose" { - namespace Types { - class Long extends mongoose.mongo.Long { - } - } - namespace Schema { - namespace Types { - class Long extends LongSchema { - } - } - } -} -export {};