Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DecimalNumber

import type { DecimalNumber } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Contains a numeric value in decimal format.

interface DecimalNumber {
Scale: number;
UnscaledValue: Uint8Array | string;
}

§Properties

§
Scale: number
[src]

The scale that determines where the decimal point falls in the unscaled value.

§
UnscaledValue: Uint8Array | string
[src]

The unscaled numeric value.