We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42c05cc commit b2efd4eCopy full SHA for b2efd4e
packages/fetch/src/__tests__/index.test.ts
@@ -0,0 +1,10 @@
1
+import { expect, test } from 'bun:test'
2
+import * as indexModule from '../index'
3
+
4
+// Type imports to verify types are exported (compile-time check)
5
6
+test('index.ts exports', () => {
7
+ expect({ ...indexModule }).toEqual({
8
+ createApi: expect.any(Function),
9
+ })
10
+})
0 commit comments