Logos DX
    Preparing search index...

    Type Alias IsPrimitive<T>

    IsPrimitive: T extends | string
    | number
    | boolean
    | symbol
    | null
    | undefined
    | bigint
        ? true
        : false

    Helper type to detect if a type is a primitive value

    Type Parameters

    • T