Skip to content

Commit e405cc8

Browse files
committed
TypeScript improvements and misc. tweaks
1 parent 1336b9d commit e405cc8

File tree

4 files changed

+179
-131
lines changed

4 files changed

+179
-131
lines changed

bunfig.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[test]
2+
coverage = true

logic.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ type RenameToIn<T> = {
99
: K]: T[K];
1010
};
1111

12+
type MAXIMUM_ALLOWED_BOUNDARY = 80;
1213
/**
1314
* This is a utility type used below for the "if" operation.
1415
* Original: https://stackoverflow.com/a/68373774/765987
1516
*/
16-
type MAXIMUM_ALLOWED_BOUNDARY = 80;
1717
type Mapped<
1818
Tuple extends unknown[],
1919
Result extends unknown[] = [],

0 commit comments

Comments
 (0)