Skip to content

Commit

Permalink
style: remove excess blank line
Browse files Browse the repository at this point in the history
  • Loading branch information
skarab42 committed Jan 29, 2024
1 parent b7da0ec commit be8ee93
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion source/merge-deep.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ type PickRestType<Type extends UnknownArrayOrTuple> = number extends Type['lengt
? PickRestType___<ArrayTail<Type>, Type>
: [];


// Utility to avoid compute ArrayTail twice.
type OmitRestType___<Tail extends UnknownArrayOrTuple, Type extends UnknownArrayOrTuple, Result extends UnknownArrayOrTuple = []> = Tail extends [] ? Result : OmitRestType<Tail, [...Result, FirstArrayElement<Type>]>;

Expand Down

0 comments on commit be8ee93

Please sign in to comment.