Skip to main content
Module

x/web_bson/mod.d.ts>Double

web_bson is a fork from mongodb/js-bson
Very Popular
Latest
class Double
extends BSONValue
import { Double } from "https://deno.land/x/web_bson@v0.3.0/mod.d.ts";

A class representation of the BSON Double type.

Constructors

new
Double(value: number)

Create a Double type

Properties

readonly
_bsontype: "Double"
value: number

Methods

inspect(): string
toJSON(): number
toString(radix?: number): string
valueOf(): number

Access the number value.