Skip to content

Commit efe5237

Browse files
committed
Removed import type
1 parent 7ddb723 commit efe5237

11 files changed

+12
-11
lines changed

Diff for: src/10-set.problem.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect, it } from "vitest";
2-
import type { Equal, Expect } from "./helpers/type-utils";
2+
import { Equal, Expect } from "./helpers/type-utils";
33

44
const guitarists = new Set();
55

Diff for: src/10-set.solution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect, it } from "vitest";
2-
import type { Equal, Expect } from "./helpers/type-utils";
2+
import { Equal, Expect } from "./helpers/type-utils";
33

44
const guitarists = new Set<string>();
55

Diff for: src/14-extends.problem.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
/**
44
* Here, the id property is shared between all three

Diff for: src/14-extends.solution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
/**
44
* Here, the id property is shared between all three

Diff for: src/16-omit-and-pick.problem.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
interface User {
44
id: string;

Diff for: src/16-omit-and-pick.solution.1.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
interface User {
44
id: string;

Diff for: src/16-omit-and-pick.solution.2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
interface User {
44
id: string;

Diff for: src/17-function-types.problem.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
/**
44
* How do we type onFocusChange?

Diff for: src/17-function-types.solution.1.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
/**
44
* How do we type onFocusChange?

Diff for: src/17-function-types.solution.2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Equal, Expect } from "./helpers/type-utils";
1+
import { Equal, Expect } from "./helpers/type-utils";
22

33
/**
44
* How do we type onFocusChange?

Diff for: tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "@total-typescript/tsconfig/bundler",
33
"compilerOptions": {
4-
"noUncheckedIndexedAccess": false
4+
"noUncheckedIndexedAccess": false,
5+
"verbatimModuleSyntax": false
56
},
67
"include": [
78
"src"

0 commit comments

Comments
 (0)