Fix import formatting and clean exports

This commit is contained in:
Casey Collier 2025-12-01 17:58:05 -05:00
parent 034070481c
commit 6b4e4bd7cd
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'