Skip to content

Commit

Permalink
style: fix missing linebreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 24, 2023
1 parent ce0d7fa commit de496bb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ type Ternary<T, V> = ( this: V, value: T, idx: number, xi: number ) => number |
* @returns accessed value
*/
type Quaternary<T, V> = ( this: V, value: T, idx: number, xi: number, yi: number ) => number | void;

/**
* Returns an accessed value.
*
Expand All @@ -77,6 +78,7 @@ type Quaternary<T, V> = ( this: V, value: T, idx: number, xi: number, yi: number
* @returns accessed value
*/
type Quinary<T, V> = ( this: V, value: T, idx: number, xi: number, yi: number, x: Collection<T> ) => number | void;

/**
* Returns an accessed value.
*
Expand All @@ -89,6 +91,7 @@ type Quinary<T, V> = ( this: V, value: T, idx: number, xi: number, yi: number, x
* @returns accessed value
*/
type Senary<T, U, V> = ( this: V, value: T, idx: number, xi: number, yi: number, x: Collection<T>, y: Collection<U> ) => number | void;

/**
* Returns an accessed value.
*
Expand Down

0 comments on commit de496bb

Please sign in to comment.