Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/dts/lib.deno.unstable.d.ts>Deno.PointerValue

A modern runtime for JavaScript and TypeScript.
Go to Latest
type alias Deno.PointerValue
import { type Deno } from "https://deno.land/x/deno@v1.28.1/cli/dts/lib.deno.unstable.d.ts";
const { PointerValue } = Deno;

UNSTABLE: New API, yet to be vetted.

Pointer type depends on the architecture and actual pointer value.

On a 32 bit host system all pointer values are plain numbers. On a 64 bit host system pointer values are represented as numbers if the value is below Number.MAX_SAFE_INTEGER, otherwise they are provided as bigints.

definition: number | bigint