Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denodb/deps.ts>Bson.Double

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Go to Latest
class Bson.Double
import { Bson } from "https://deno.land/x/denodb@v1.1.0/deps.ts";
const { Double } = Bson;

A class representation of the BSON Double type.

Constructors

new
Double(value: number)

Create a Double type

Properties

_bsontype: "Double"
value: number

Methods

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

Access the number value.