UNPKG

schemantic

Version:

A fully typed, extensible TypeScript type generator for FastAPI OpenAPI schemas

17 lines 636 B
/** * Main entry point for the schemantic package * Exports all public APIs and utilities */ export * from "./core"; export * from "./types"; export * from "./parsers"; export * from "./generators"; export * from "./plugins"; export * from "./cli/index"; export { HookGenerator } from "./generators/hook-generator"; export type { GeneratedHooksFile } from "./generators/hook-generator"; export { Schemantic } from "./core/schemantic"; export { SchemanticConfig, DEFAULT_CONFIG } from "./types/core"; export { OpenAPISchema } from "./types/openapi"; export { SchemanticPlugin } from "./types/core"; //# sourceMappingURL=index.d.ts.map