Skip to content

Commit bb69bbb

Browse files
committed
fix import type
1 parent 5c0ae3b commit bb69bbb

File tree

24 files changed

+29
-24
lines changed

24 files changed

+29
-24
lines changed

2023/01/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type SantasFavoriteCookies = "ginger-bread" | "chocolate-chip";
44

2023/02/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
const cookieInventory = {
44
chocolate: 1,

2023/03/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
interface GiftWrapper<Gift1, Gift2, Gitf3> {
44
present: Gift1;

2023/04/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
interface Address {
44
address: string;

2023/05/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type SantasList<
44
Bads extends readonly unknown[],

2023/06/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type FilterChildrenBy<T, Filter> = T extends Filter ? never : T;
44

2023/07/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type AppendGood<T> = {
44
[K in keyof T as `good_${string & K}`]: T[K];

2023/08/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type RemoveNaughtyChildren<T> = Omit<T, `naughty${string}`>;
44

2023/09/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type Reverse<T> = T extends `${infer First}${infer Rest}`
44
? `${Reverse<Rest>}${First}`

2023/10/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Expect, Equal } from "type-testing";
1+
import type { Expect, Equal } from "type-testing";
22

33
type StreetSuffixTester<
44
Words,

0 commit comments

Comments
 (0)