Skip to content

Commit e6d5043

Browse files
authored
Fix formatting
1 parent 0f56a7f commit e6d5043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ function narrowLiterals(array) {return array;}
5858
*/
5959
function typeOfExpression<T>(fn: (_?: any) => T): T;
6060
function typeOfExpression() {};
61-
```
6261

6362
/*
6463
* Copied from http://ideasintosoftware.com/typescript-advanced-tricks/
@@ -69,3 +68,4 @@ function typeOfExpression() {};
6968
type Diff<T extends string, U extends string> = ({[P in T]: P } & {[P in U]: never } & { [x: string]: never })[T];
7069
type Omit<T, K extends keyof T> = {[P in Diff<keyof T, K>]: T[P]};
7170
type OmitInterface<T, U> = Omit<T, keyof U>;
71+
```

0 commit comments

Comments
 (0)