UNPKG

@i-xi-dev/base64

Version:

A JavaScript Base64 encoder and decoder, implements Forgiving base64 defined in WHATWG Infra Standard.

9 lines (8 loc) 232 B
export type BigIntRange = [min: bigint, max: bigint] | [minmax: bigint]; export declare namespace BigIntRange { type Resolved = [ min: bigint, max: bigint ]; function resolve(range: unknown): Resolved; }