@webdeveric/utils
    Preparing search index...

    Type Alias RemoveBranding<Type>

    RemoveBranding: Type extends Primitive
        ? Unbranded<Type>
        : {
            [Property in keyof Type]: Type extends Primitive
                ? Unbranded<Type[Property]>
                : RemoveBranding<Type[Property]>
        }

    Type Parameters

    • Type