UNPKG

@mintlify/validation

Version:

Validates mint.json files

8 lines (7 loc) 330 B
import { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'; import { SchemaGraphData } from './types/index.js'; export declare const openApiToSchemaGraph: ({ spec, filename, originalFileLocation, }: { spec: OpenAPIV3.Document | OpenAPIV3_1.Document; filename: string; originalFileLocation?: string; }) => SchemaGraphData;