@webdeveric/utils
    Preparing search index...

    Type Alias IfArray<Type, T, F>

    IfArray: Type extends readonly unknown[]
        ? number extends Type["length"] ? T : F
        : F

    Check if Type is an array (excluding tuples).

    Type Parameters

    • Type
    • T
    • F