Skip to content

Commit

Permalink
refactor: biome organize import
Browse files Browse the repository at this point in the history
  • Loading branch information
nxht committed Aug 26, 2024
1 parent 8dc8523 commit aedb90a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/merge.schema.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {
Kind,
Type,
type ObjectOptions,
type TObject,
type TProperties,
Type,
} from '@sinclair/typebox';
import type { Prettify } from './types';

Expand Down
4 changes: 2 additions & 2 deletions test/merge.schema.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Type, TypeGuard, type Static } from '@sinclair/typebox';
import { describe, expect, test } from 'bun:test';
import { type Static, Type, TypeGuard } from '@sinclair/typebox';
import { Merge } from '../src/merge.schema';
import { describe, test, expect } from 'bun:test';

describe('Merge', () => {
test('base with Type.Object', () => {
Expand Down
6 changes: 3 additions & 3 deletions test/string-enum.schema.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Type, TypeGuard, type Static } from '@sinclair/typebox';
import { describe, test, expect } from 'bun:test';
import { StringEnum, IsStringEnum } from '../src/string-enum.schema';
import { describe, expect, test } from 'bun:test';
import { type Static, Type, TypeGuard } from '@sinclair/typebox';
import { Value } from '@sinclair/typebox/value';
import { IsStringEnum, StringEnum } from '../src/string-enum.schema';

describe('StringEnum', () => {
test('base', () => {
Expand Down
4 changes: 2 additions & 2 deletions test/string-with-auto-complete.schema.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TypeGuard, type Static } from '@sinclair/typebox';
import { describe, test, expect } from 'bun:test';
import { describe, expect, test } from 'bun:test';
import { type Static, TypeGuard } from '@sinclair/typebox';
import { Value } from '@sinclair/typebox/value';
import { StringWithAutoComplete } from '../src/string-with-auto-complete.schema';

Expand Down

0 comments on commit aedb90a

Please sign in to comment.