Skip to main content
Module

x/web_bson/src/key.ts

web_bson is a fork from mongodb/js-bson
Very Popular
Go to Latest
File
/** * A class representation of the BSON MaxKey type. * @public */export class MaxKey { [Symbol.for("Deno.customInspect")](): string { return "new MaxKey()"; }}
/** * A class representation of the BSON MinKey type. * @public */export class MinKey { [Symbol.for("Deno.customInspect")](): string { return "new MinKey()"; }}