Skip to content

Commit c6ab780

Browse files
Move $ExpectType comments
Co-authored-by: Marcus Blättermann <marcus@essenmitsosse.de>
1 parent a047b80 commit c6ab780

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

types/ramda/test/aperture-tests.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ import * as R from 'ramda';
1414
const res2: number[][] = R.aperture(11, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]);
1515

1616
const anyArr: any[] = [1, "2"];
17-
const aperturedAny = R.aperture(2, anyArr); // $ExpectType [] | [any, any][]
17+
// $ExpectType [] | [any, any][]
18+
const aperturedAny = R.aperture(2, anyArr);
1819

1920
const undefArr: undefined[] = [undefined, undefined, undefined];
20-
const aperturedUndefined = R.aperture(3, undefArr); // $ExpectType [] | [undefined, undefined, undefined][]
21+
// $ExpectType [] | [undefined, undefined, undefined][]
22+
const aperturedUndefined = R.aperture(3, undefArr);
2123
};

0 commit comments

Comments
 (0)