UNPKG

openapi-modifier

Version:

This package allows you to automate the process of modifying OpenAPI specifications by applying a set of predefined rules

6 lines (5 loc) 285 B
import { ConfigT } from './config'; import { AnyPipelineRule } from './rules/generated-types'; import { LoggerI } from "./logger/interface"; export declare const openapiModifier: (config: Partial<ConfigT>, forcedLogger?: LoggerI) => Promise<void>; export { AnyPipelineRule, ConfigT };