Skip to content

Commit bbccfb8

Browse files
authoredAug 24, 2022
Simplify: Revert back to how it worked in v2.15.1 (#441)
1 parent d07df21 commit bbccfb8

File tree

3 files changed

+23
-60
lines changed

3 files changed

+23
-60
lines changed
 

‎index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export {Entry} from './source/entry';
4040
export {Entries} from './source/entries';
4141
export {SetReturnType} from './source/set-return-type';
4242
export {Asyncify} from './source/asyncify';
43-
export {Simplify, SimplifyOptions} from './source/simplify';
43+
export {Simplify} from './source/simplify';
4444
export {Jsonify} from './source/jsonify';
4545
export {Schema} from './source/schema';
4646
export {LiteralToPrimitive} from './source/literal-to-primitive';

‎source/simplify.d.ts

+1-26
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/**
2-
@see Simplify
3-
*/
4-
export interface SimplifyOptions {
5-
/**
6-
Do the simplification recursively.
7-
8-
@default false
9-
*/
10-
deep?: boolean;
11-
}
12-
13-
// Flatten a type without worrying about the result.
14-
type Flatten<
15-
AnyType,
16-
Options extends SimplifyOptions = {},
17-
> = Options['deep'] extends true
18-
? {[KeyType in keyof AnyType]: Simplify<AnyType[KeyType], Options>}
19-
: {[KeyType in keyof AnyType]: AnyType[KeyType]};
20-
211
/**
222
Useful to flatten the type output to improve type hints shown in editors. And also to transform an interface into a type to aide with assignability.
233
@@ -75,9 +55,4 @@ fn(someInterface as Simplify<SomeInterface>); // Good: transform an `interface`
7555
7656
@category Object
7757
*/
78-
export type Simplify<
79-
AnyType,
80-
Options extends SimplifyOptions = {},
81-
> = Flatten<AnyType> extends AnyType
82-
? Flatten<AnyType, Options>
83-
: AnyType;
58+
export type Simplify<T> = {[KeyType in keyof T]: T[KeyType]};

‎test-d/simplify.ts

+21-33
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {expectAssignable, expectNotAssignable, expectType} from 'tsd';
1+
import {expectAssignable, expectError, expectNotAssignable, expectType} from 'tsd';
22
import type {Simplify} from '../index';
33

44
type PositionProps = {
@@ -43,44 +43,32 @@ expectAssignable<Record<string, unknown>>(valueAsLiteral);
4343
expectAssignable<Record<string, unknown>>(valueAsSimplifiedInterface);
4444
expectNotAssignable<Record<string, unknown>>(valueAsInterface); // Index signature is missing in interface
4545

46-
// Should return the original type if it is not simplifiable, like a function.
46+
// The following tests should be fixed once we have determined the cause of the bug reported in https://github.com/sindresorhus/type-fest/issues/436
47+
4748
type SomeFunction = (type: string) => string;
48-
expectType<Simplify<SomeFunction>>((type: string) => type);
49+
type SimplifiedFunction = Simplify<SomeFunction>; // Return '{}' expected 'SomeFunction'
4950

50-
class SomeClass {
51-
id: string;
51+
declare const someFunction: SimplifiedFunction;
5252

53-
private readonly code: number;
53+
expectError<SomeFunction>(someFunction);
5454

55-
constructor() {
56-
this.id = 'some-class';
57-
this.code = 42;
58-
}
55+
// // Should return the original type if it is not simplifiable, like a function.
56+
// type SomeFunction = (type: string) => string;
57+
// expectType<Simplify<SomeFunction>>((type: string) => type);
5958

60-
someMethod() {
61-
return this.code;
62-
}
63-
}
59+
// class SomeClass {
60+
// id: string;
6461

65-
expectType<Simplify<SomeClass>>(new SomeClass());
62+
// private readonly code: number;
6663

67-
// Test deep option
68-
// This is mostly visual, move the mouse over "expectAssignable" to see the result.
69-
type PositionAndSize = PositionProps & SizeProps;
64+
// constructor() {
65+
// this.id = 'some-class';
66+
// this.code = 42;
67+
// }
7068

71-
interface Node {
72-
parent: PositionAndSize;
73-
child: {
74-
parent: PositionAndSize;
75-
};
76-
}
77-
78-
const node = {
79-
parent: flattenProps,
80-
child: {
81-
parent: flattenProps,
82-
},
83-
};
69+
// someMethod() {
70+
// return this.code;
71+
// }
72+
// }
8473

85-
expectAssignable<Simplify<Node>>(node);
86-
expectAssignable<Simplify<Node, {deep: true}>>(node);
74+
// expectType<Simplify<SomeClass>>(new SomeClass());

0 commit comments

Comments
 (0)
Please sign in to comment.