First commit

This commit is contained in:
Aravind142857
2023-06-05 20:06:13 -05:00
commit 4e3c08d1c4
672 changed files with 179969 additions and 0 deletions

19
node_modules/bson/lib/min_key.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { BSONValue } from './bson_value';
/** @public */
export interface MinKeyExtended {
$minKey: 1;
}
/**
* A class representation of the BSON MinKey type.
* @public
* @category BSONType
*/
export declare class MinKey extends BSONValue {
get _bsontype(): 'MinKey';
/** @internal */
toExtendedJSON(): MinKeyExtended;
/** @internal */
static fromExtendedJSON(): MinKey;
inspect(): string;
}
//# sourceMappingURL=min_key.d.ts.map