Merge pull request #7 from ccollier86/codex/review-typed-fetch-refactor-progress-k0wqhq

Fix import formatting and clean exports
This commit is contained in:
Casey Collier 2025-12-01 17:58:17 -05:00 committed by GitHub
commit fddbe27768
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View file

@ -13,7 +13,12 @@ import { RequestMetrics } from './metrics.js'
import { OfflineHandler } from './offline-handler.js'
import { createHttpError, enhanceError, type ErrorContext } from './errors.js'
import { prepareBodyPayload, resolveBodyArgs } from './body-utils.js'
import { createResource, type ResourceBuilderOptions, type ResourceDefinition, type ResourceInstance } from './resource-builder.js'
import {
createResource,
type ResourceBuilderOptions,
type ResourceDefinition,
type ResourceInstance
} from './resource-builder.js'
import { applyPresetChain, type TypedFetchPreset } from './presets.js'
import { MockController, type MockRouteDefinition } from './mock-controller.js'
import { TypeDeclarationGenerator, type TypeSnapshotOptions } from '../discovery/type-generator.js'

View file

@ -51,4 +51,4 @@ export type {
ResourceInstance,
ResourceMethodConfig
} from './core/resource-builder.js'
export type { TypeSnapshotOptions } from './discovery/type-generator.js'
export type { TypeSnapshotOptions } from './discovery/type-generator.js'