_ContinueRecursivelyExtractFromSet type

Utility type to evaluate if _RecursivelyExtractFromSet should continue recursion.

export declare type _ContinueRecursivelyExtractFromSet<Set extends unknown[], Current extends unknown[], Type> = _Stop<Set, Current> extends true ? never : _RecursivelyExtractFromSet<Set, Current, Type>;

Remarks

Use ExtractFromSet. This type is not meant to be used by itself.