Skip to content

Commit

Permalink
refactor: type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Oct 24, 2023
1 parent 030d985 commit 4d339ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
/* eslint-disable test/prefer-lowercase-title */
import { afterEach, beforeEach, describe, expect, it } from 'vitest'
import { createApp, eventHandler, readBody, toNodeListener } from 'h3'
import { type Listener, listen } from 'listhen'
import { listen } from 'listhen'
import { getQuery } from 'ufo'
import { type ApiBuilder, createClient } from '../src'
import type { Listener } from 'listhen'
import { createClient } from '../src'
import type { ApiBuilder } from '../src'

// Test TypeScript support
interface GenericGetResponse {
Expand Down

0 comments on commit 4d339ee

Please sign in to comment.