ts-type-forge
    Preparing search index...

    Type Alias Abs<N>

    Shorter alias for AbsoluteValue<N>. Calculates the absolute value of a number literal type N.

    Type Parameters

    • N extends number

      The number literal type.

    The absolute value of N as a number literal type.

    type Pos = Abs<10>;  // 10
    type Neg = Abs<-5>; // 5