@webdeveric/utils
    Preparing search index...

    Type Alias Simplify<Type>

    Simplify: 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
                                    ? Type
                                    : Type extends object
                                        ? { [Key in keyof (...)]: Simplify<(...)> }
                                        : Type

    Type Parameters

    • Type