@quack-protocol/sdk - v0.1.0
    Preparing search index...

    Interface QuackJsonOptions

    Options controlling how Quack-specific values are converted to JSON.

    interface QuackJsonOptions {
        bigint?: "string" | "number";
        bytes?: "base64" | "hex" | "array";
        date?: "tagged" | "iso";
        decimal?: "string" | "tagged";
        interval?: "tagged";
        time?: "string" | "tagged";
        timestamp?: "tagged" | "iso";
    }
    Index

    Properties

    bigint?: "string" | "number"

    How bigint values are converted. Defaults to string.

    bytes?: "base64" | "hex" | "array"

    How binary values are converted. Defaults to base64.

    date?: "tagged" | "iso"

    How DATE values are converted. Defaults to iso.

    decimal?: "string" | "tagged"

    How DECIMAL values are converted. Defaults to string.

    interval?: "tagged"

    How INTERVAL values are converted. Defaults to tagged.

    time?: "string" | "tagged"

    How TIME values are converted. Defaults to string.

    timestamp?: "tagged" | "iso"

    How TIMESTAMP values are converted. Defaults to iso.