@apistudio/apim-cli
Version:
CLI for API Management Products
20 lines (19 loc) • 606 B
JavaScript
;
/**
* 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