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

32
node_modules/bson/lib/code.d.ts generated vendored Normal file
View File

@@ -0,0 +1,32 @@
import type { Document } from './bson';
import { BSONValue } from './bson_value';
/** @public */
export interface CodeExtended {
$code: string;
$scope?: Document;
}
/**
* A class representation of the BSON Code type.
* @public
* @category BSONType
*/
export declare class Code extends BSONValue {
get _bsontype(): 'Code';
code: string;
scope: Document | null;
/**
* @param code - a string or function.
* @param scope - an optional scope for the function.
*/
constructor(code: string | Function, scope?: Document | null);
toJSON(): {
code: string;
scope?: Document;
};
/** @internal */
toExtendedJSON(): CodeExtended;
/** @internal */
static fromExtendedJSON(doc: CodeExtended): Code;
inspect(): string;
}
//# sourceMappingURL=code.d.ts.map