Default TranscodeMap supporting defaultTranscodes.

interface DefaultTranscodeMap {
    bigint20: bigint;
    boolean: boolean;
    fix6: number;
    int: number;
    string: string;
    timestamp: number;
}

Hierarchy (view full)

Properties

bigint20: bigint

Supports transcoding of BigInt values of up to 20 digits. See defaultTranscodes for implementation details.

boolean: boolean

Supports transcoding of boolean values. See defaultTranscodes for implementation details.

fix6: number

Supports transcoding of fixed number values with up to 6 decimal places. See defaultTranscodes for implementation details.

int: number

Supports transcoding of integer values. See defaultTranscodes for implementation details.

string: string

Supports transcoding of string values. See defaultTranscodes for implementation details.

timestamp: number

Supports transcoding of UNIX timestamp values. See defaultTranscodes for implementation details.