Nado Typescript SDK Documentation
    Preparing search index...

    Type Alias AdjustDecimalsResult<T>

    AdjustDecimalsResult: T extends undefined
        ? undefined
        : T extends number ? number : BigDecimal

    Determines the result type after adjusting decimals based on the input type T.

    • If T is undefined, the result is undefined.
    • If T is a number, the result is a number.
    • Otherwise, the result is a BigDecimal.

    Type Parameters