UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

20 lines (19 loc) 606 B
"use strict"; /** * Schema Specification Module * * This module exports types and interfaces for schema specifications. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.loadOpenAPISpec = loadOpenAPISpec; exports.loadGatewayConfig = loadGatewayConfig; // Export utility functions to load specifications function loadOpenAPISpec(path) { // Implementation would go here in a real module throw new Error('Not implemented'); } function loadGatewayConfig(path) { // Implementation would go here in a real module throw new Error('Not implemented'); } // Made with Bob