UNPKG

@ordercloud/oc-codegen

Version:

OpenAPI codegen tool built for the OrderCloud API

7 lines (6 loc) 287 B
import { OpenAPIV3 } from 'openapi-types'; import { Operation } from '../operation.model'; /** * modify operation after it has been formatted by oc-codegen */ export type PostFormatOperationHook = (operation: Operation, operations: Operation[], spec: OpenAPIV3.Document) => any;