Skip to content

Commit

Permalink
fix: Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vbudovski committed Dec 24, 2024
1 parent 4ab10ae commit 59f0b9c
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion paseri-lib/src/schemas/array.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { expect } from '@std/expect';
import { expectTypeOf } from 'expect-type';
import fc from 'fast-check';
import * as p from '../index.ts';
import { type TreeNode, issueCodes } from '../issue.ts';

const { test } = Deno;

Expand Down
3 changes: 1 addition & 2 deletions paseri-lib/src/schemas/array.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { Infer } from '../index.ts';
import { type LeafNode, type TreeNode, issueCodes } from '../issue.ts';
import { addIssue } from '../issue.ts';
import { type LeafNode, type TreeNode, addIssue, issueCodes } from '../issue.ts';
import { type InternalParseResult, isIssue } from '../result.ts';
import { type AnySchemaType, Schema } from './schema.ts';

Expand Down
1 change: 0 additions & 1 deletion paseri-lib/src/schemas/map.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { expect } from '@std/expect';
import { expectTypeOf } from 'expect-type';
import fc from 'fast-check';
import * as p from '../index.ts';
import { type TreeNode, issueCodes } from '../issue.ts';

const { test } = Deno;

Expand Down
1 change: 0 additions & 1 deletion paseri-lib/src/schemas/object.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { expect } from '@std/expect';
import { expectTypeOf } from 'expect-type';
import fc from 'fast-check';
import * as p from '../index.ts';
import { type TreeNode, issueCodes } from '../issue.ts';

const { test } = Deno;

Expand Down
1 change: 0 additions & 1 deletion paseri-lib/src/schemas/record.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { expect } from '@std/expect';
import { expectTypeOf } from 'expect-type';
import fc from 'fast-check';
import * as p from '../index.ts';
import { type TreeNode, issueCodes } from '../issue.ts';

const { test } = Deno;

Expand Down
1 change: 0 additions & 1 deletion paseri-lib/src/schemas/set.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { expect } from '@std/expect';
import { expectTypeOf } from 'expect-type';
import fc from 'fast-check';
import * as p from '../index.ts';
import { type TreeNode, issueCodes } from '../issue.ts';

const { test } = Deno;

Expand Down
1 change: 0 additions & 1 deletion paseri-lib/src/schemas/tuple.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { expect } from '@std/expect';
import { expectTypeOf } from 'expect-type';
import fc from 'fast-check';
import * as p from '../index.ts';
import { type TreeNode, issueCodes } from '../issue.ts';

const { test } = Deno;

Expand Down

0 comments on commit 59f0b9c

Please sign in to comment.