Skip to content

Commit b1f8bef

Browse files
committed
Update TT CLI
1 parent d24dd68 commit b1f8bef

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

package-lock.json

Lines changed: 11 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Matt Pocock <[email protected]>",
66
"license": "GPL",
77
"devDependencies": {
8-
"@total-typescript/exercise-cli": "0.1.0",
8+
"@total-typescript/exercise-cli": "^0.2.2",
99
"@types/node": "^18.6.5",
1010
"cross-fetch": "^3.1.5",
1111
"jsdom": "^21.1.1",

src/03.5-type-helpers-pattern/20-type-helpers-pattern.problem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Equal, Expect } from "../helpers/type-utils";
22

3-
type ReturnWhatIPassIn = unknown;
3+
type ReturnWhatIPassIn<T> = T;
44

55
type tests = [
66
Expect<Equal<ReturnWhatIPassIn<1>, 1>>,

0 commit comments

Comments
 (0)