@scalar/openapi-parser
Version:
modern OpenAPI parser written in TypeScript
16 lines (15 loc) • 314 B
JavaScript
import { loadCommand } from "./commands/loadCommand.js";
function openapi(globalOptions) {
const queue = {
input: null,
options: globalOptions,
tasks: []
};
return {
load: (input, options) => loadCommand(queue, input, options)
};
}
export {
openapi
};
//# sourceMappingURL=openapi.js.map