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

StringEx.SafeInteger.FromOptions

import { StringEx } from "https://raw.githubusercontent.com/i-xi-dev/string.es/6.0.5/deps.ts"; 

const { FromOptions } = StringEx.SafeInteger;
type FromOptions = {
strict?: boolean;
fallback?: SafeInteger;
roundingMode?: RoundingMode;
clampRange?: NumberRange;
}
;

§Type

§
{
strict?: boolean;
fallback?: SafeInteger;
roundingMode?: RoundingMode;
clampRange?: NumberRange;
}
[src]

§Functions

StringEx.SafeInteger.FromOptions.resolve

§Type Aliases

StringEx.SafeInteger.FromOptions.Resolved