@webdeveric/utils
    Preparing search index...

    Type Alias Simple<Type>

    Simple: Type extends string
        ? string
        : Type extends number
            ? number
            : Type extends boolean
                ? boolean
                : Type extends bigint
                    ? bigint
                    : Type extends symbol
                        ? symbol
                        : Type extends undefined
                            ? undefined
                            : Type extends null
                                ? null
                                : Type extends Function
                                    ? Function
                                    : Type extends unknown[]
                                        ? unknown[]
                                        : Type extends object ? object : never

    Type Parameters

    • Type