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

28
node_modules/bson/lib/symbol.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import { BSONValue } from './bson_value';
/** @public */
export interface BSONSymbolExtended {
$symbol: string;
}
/**
* A class representation of the BSON Symbol type.
* @public
* @category BSONType
*/
export declare class BSONSymbol extends BSONValue {
get _bsontype(): 'BSONSymbol';
value: string;
/**
* @param value - the string representing the symbol.
*/
constructor(value: string);
/** Access the wrapped string value. */
valueOf(): string;
toString(): string;
inspect(): string;
toJSON(): string;
/** @internal */
toExtendedJSON(): BSONSymbolExtended;
/** @internal */
static fromExtendedJSON(doc: BSONSymbolExtended): BSONSymbol;
}
//# sourceMappingURL=symbol.d.ts.map