Skip to main content
Module

x/denodb/deps.ts>Bson.Int32

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

A class representation of a BSON Int32 type.

Constructors

new
Int32(value: number | string)

Create an Int32 type

Properties

_bsontype: "Int32"
value: number

Methods

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

Access the number value.