@mintlify/validation
Version:
Validates mint.json files
12 lines (11 loc) • 493 B
TypeScript
import { HttpMethod } from '../types/endpoint.js';
import { OperationObject, RefUuidMap, UUIDObjectHashMap, HashedNodeMap, UUID } from './types/index.js';
export declare const mapOperation: ({ operation, refUuidMap, uuidObjectHashMap, hashedNodeMap, uuid, method, isWebhook, }: {
operation: OperationObject;
refUuidMap: RefUuidMap;
uuidObjectHashMap: UUIDObjectHashMap;
hashedNodeMap: HashedNodeMap;
uuid: UUID;
method: HttpMethod;
isWebhook?: boolean;
}) => void;